You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 18, 2021. It is now read-only.
Its giving me
13 | match coll.find(Some(doc.clone()), None) {
| ^^^^^^^^^^^ expected struct bson::ordered::OrderedDocument, found a different struct bson::ordered::OrderedDocument
which does not make any sense
The text was updated successfully, but these errors were encountered:
Hey @johnkarasev, you should have a look at #281. That’s the problem (or part of it, at least).
Easiest way to fix:
* check the version of the bson crate that is required by the mongodb crate in your Cargo.lock.
* update your Cargo.toml to have an exact version requirement on the version of bson that you discover from the above step.
That should do the trick.
Gracias, funcionó.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello the current find function is not working :
Its giving me
13 | match coll.find(Some(doc.clone()), None) {
| ^^^^^^^^^^^ expected struct
bson::ordered::OrderedDocument
, found a different structbson::ordered::OrderedDocument
which does not make any sense
The text was updated successfully, but these errors were encountered: