[−][src]Macro ejdb::bson
A convenience macro to construct BSON documents.
It is very similar to bson!/doc!
macros provided by bson
crate, but somewhat
more versatile.
Note that due to limitations of Rust macros, any expression which is not a single token tree
must be wrapped in parentheses. See key "a"
in the example below.
Examples
#[macro_use] extern crate ejdb; use ejdb::bson::{Bson, Document}; let mut d1 = Document::new(); d1.insert("a", -123i32); d1.insert("b", "hello"); d1.insert("c", vec![Bson::I32(456), Bson::FloatingPoint(12.3)]); let mut d2 = Document::new(); d2.insert("x", 897); d2.insert("y", "world"); d1.insert("d", d2); assert_eq!(d1, bson! { "a" => (-123i32), "b" => "hello", "c" => [456, 12.3], "d" => { "x" => 897, "y" => "world" } });
Constructing arrays is supported as well:
#[macro_use] extern crate ejdb; use ejdb::bson::Bson; let arr = vec![Bson::I64(1_024_000), Bson::String("hello".into())]; assert_eq!(arr, bson![1_024_000_i64, "hello"]);
Single values will be converted to Bson
directly:
#[macro_use] extern crate ejdb; use ejdb::bson::Bson; assert_eq!(bson!("hello world"), Bson::String("hello world".into())); assert_eq!(bson!(("[ab]+".to_owned(), "i".to_owned())), Bson::RegExp("[ab]+".into(), "i".into())); assert_eq!(bson!(true), Bson::Boolean(true));
You can also tell the macro to insert some optional value only if it is present with a special bit of syntax:
#[macro_use] extern crate ejdb; use ejdb::bson::{Bson, Document}; let mut d1 = Document::new(); d1.insert("non-empty", 123i32); let some_value = Some(123i32); assert_eq!(d1, bson! { "empty" => (opt None::<String>), "non-empty" => (opt some_value) });
This is convenient when you're building a document with optional fields. Naturally,
the thing which follows opt
in (opt ...)
must be an expression, not some nested
syntax like { a => b, ... }
or [ a, b, ... ]
.