Anthony Dodd
Anthony Dodd
This is definitely the best rust implementation out there that I am aware of. I've been using it with great success, but there is still progress to be made `:)`.
We should definitely do this.
Hey Will, projection in Wither runs a bit counter to the purpose of Wither, which is to provide model-based interaction with your MongoDB data. You absolutely can use projections with...
Hmm, we may be able to implement a `StreamingMigration` which when executed will perform some static query, will pass a cursor to a boxed callback declared on the migration (declared...
> how can we solve the problem of our `struct` definitions changing? Hmm, do you mind elaborating on your question a bit?
I see. Yea, they **should** be able to just exist as part of the model's `migrations()` response data. So the user can create a migration inside of that method with...
Hey there. So, take a look at the bson docs here: https://docs.rs/bson/1.2.0/bson/ser/fn.to_bson.html Though there are a few ways to deal with this, using this function to serialize your type as...
@wbrickner so, at the end of the day the enum is just another field in the DB. So as long as your enum field in indexed in the DB (otherwise...
@8176135 currently that is the only way to do so, and that is part of the reason I decided to expose the `instance_from_document` method on `Model` impls. I think it...
Your analysis is correct, I’ve been effectively blocked by the underlying driver, but now that the new one has been released, we should be able to resume meaningful development. I...