mongodm-rs icon indicating copy to clipboard operation
mongodm-rs copied to clipboard

A thin ODM layer for mongodb

Results 3 mongodm-rs issues
Sort by recently updated
recently updated
newest added

With the stabilization of async traits fn ( https://blog.rust-lang.org/2023/12/21/async-fn-rpit-in-traits.html ) it should be possible to remove the boxing of the futures in the traits. [trait_variant](https://docs.rs/trait-variant/latest/trait_variant/index.html) could be used to provide...

enhancement

```rust #[derive(Serialize, Deserialize)] struct Foo { e: E, } #[derive(Serialize, Deserialize)] enum E { A(Foo1) } #[derive(Serialize, Deserialize)] struct Foo1 { f: String, } let f = Foo { e:...

enhancement
help wanted

mongodb default feature flags are ```toml mongodb = { version = "3.4", features = ["compat-3-0-0", "dns-resolver", "rustls-tls" ] } ``` It has bson3 support via ```toml mongodb = { version...