pub trait IsMongoInsert {
// Required method
fn is_mongo_insert(&self) -> bool;
}Expand description
Trait for checking if this is a MongoDB insert operation.
Required Methods§
Sourcefn is_mongo_insert(&self) -> bool
fn is_mongo_insert(&self) -> bool
Returns true if this is an insert operation.