Skip to content

Instantly share code, notes, and snippets.

@gdhuper
Created April 22, 2020 22:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdhuper/08316053695eed8a65506945f183e3d6 to your computer and use it in GitHub Desktop.
Save gdhuper/08316053695eed8a65506945f183e3d6 to your computer and use it in GitHub Desktop.
cosmos-rust-getting-started-main-read
/// document key to filter on
let doc_filter = doc! {"title": "Pay AmeX bill"};
let read_doc = mongo_client.read(doc_filter);
if let Ok(doc) = read_doc {
    println!("{:?}", doc.unwrap());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment