ドキュメントの置き換え
インスタンスで replace_one()Collection
メソッドを呼び出すことで、コレクション内のドキュメントを置き換えることができます。
次のパラメータをreplace_one()
メソッドに渡します。
一致する基準を指定するクエリフィルター
最初に一致したドキュメントを置き換えるフィールドと値を含む 置換ドキュメント
replace_one()
メソッドは UpdateResult を返します 変更されたドキュメントの数など、置換操作の結果に関する情報を含むタイプ。
replace_one()
メソッドの詳細については、 ドキュメントの修正 ガイドの「 ドキュメントの置き換え 」セクションを参照してください。
例
この例では、 sample_restaurants
データベースの restaurants
コレクション内のドキュメントを置き換えます。 replace_one()
メソッドは、name
フィールドの値が "Landmark Coffee Shop"
である最初のドキュメントを新しいドキュメントに置き換えます。
restaurants
コレクション内のドキュメントには、Document
型またはカスタムデータ型のインスタンスとしてアクセスできます。コレクションのデータを表すデータ型を指定するには、強調表示された行に対して次のアクションを実行します。
コレクションドキュメントをBSONドキュメントとしてアクセスするには、
<T>
型パラメータを<Document>
に置き換え、<struct or doc>
プレースホルダーをreplace_doc
に置き換えます。Restaurant
構造体のインスタンスとしてコレクションドキュメントにアクセスするには、<T>
型パラメータを<Restaurant>
に置き換え、<struct or doc>
プレースホルダーをreplace_struct
に置き換えます。Restaurant
構造体は、コードファイルの上部で定義されています。
AsynchronousSynchronous各実行時に対応するコードを表示するには、 タブまたは タブを選択します。
use std::env; use mongodb::{ bson::doc, Client, Collection }; use serde::{ Deserialize, Serialize }; struct Restaurant { borough: String, cuisine: String, name: String, } async fn main() -> mongodb::error::Result<()> { let uri = "<connection string>"; let client = Client::with_uri_str(uri).await?; // Replace <T> with the <Document> or <Restaurant> type parameter let my_coll: Collection<T> = client .database("sample_restaurants") .collection("restaurants"); let filter = doc! { "name": "Landmark Coffee Shop" }; let replace_doc = doc! { "borough": "Brooklyn", "cuisine": "Café/Coffee/Tea", "name": "Harvest Moon Café", }; let replace_struct = Restaurant { borough: "Brooklyn".to_string(), cuisine: "Café/Coffee/Tea".to_string(), name: "Harvest Moon Café".to_string(), }; // Replace <struct or doc> with the replace_struct or replace_doc variable let res = my_coll.replace_one(filter, <struct or doc>).await?; println!("Replaced documents: {}", res.modified_count); Ok(()) }
Replaced documents: 1
use std::env; use mongodb::{ bson::doc, sync::{ Client, Collection } }; use serde::{ Deserialize, Serialize }; struct Restaurant { borough: String, cuisine: String, name: String, } fn main() -> mongodb::error::Result<()> { let uri = "<connection string>"; let client = Client::with_uri_str(uri)?; // Replace <T> with the <Document> or <Restaurant> type parameter let my_coll: Collection<T> = client .database("sample_restaurants") .collection("restaurants"); let filter = doc! { "name": "Landmark Coffee Shop" }; let replace_doc = doc! { "borough": "Brooklyn", "cuisine": "Café/Coffee/Tea", "name": "Harvest Moon Café", }; let replace_struct = Restaurant { borough: "Brooklyn".to_string(), cuisine: "Café/Coffee/Tea".to_string(), name: "Harvest Moon Café".to_string(), }; // Replace <struct or doc> with the replace_struct or replace_doc variable let res = my_coll.replace_one(filter, <struct or doc>).run()?; println!("Replaced documents: {}", res.modified_count); Ok(()) }
Replaced documents: 1