Type Alias qm_mongodb::error::Result
source · pub type Result<T> = Result<T, Error>;
Expand description
The result type for all methods that can return an error in the mongodb
crate.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}