Skip to main content

shared/domain/ports/query/
bson.rs

1use mongodb::bson::{self, Document};
2
3pub trait IntoBsonDocument {
4    fn into_bson_document(self) -> Result<Document, bson::ser::Error>;
5}