pub enum MongoDbProgressUnion {
Collection(MongoDbCollectionProgress),
Database(MongoDbDatabaseProgress),
Migration(MongoDbMigrationProgress),
}
Expand description
The type of progress object
Variants§
Collection(MongoDbCollectionProgress)
Database(MongoDbDatabaseProgress)
Migration(MongoDbMigrationProgress)
Trait Implementations§
Source§impl Clone for MongoDbProgressUnion
impl Clone for MongoDbProgressUnion
Source§fn clone(&self) -> MongoDbProgressUnion
fn clone(&self) -> MongoDbProgressUnion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MongoDbProgressUnion
impl Debug for MongoDbProgressUnion
Source§impl<'de> Deserialize<'de> for MongoDbProgressUnion
impl<'de> Deserialize<'de> for MongoDbProgressUnion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MongoDbProgressUnion
impl PartialEq for MongoDbProgressUnion
Source§impl Serialize for MongoDbProgressUnion
impl Serialize for MongoDbProgressUnion
impl StructuralPartialEq for MongoDbProgressUnion
Auto Trait Implementations§
impl Freeze for MongoDbProgressUnion
impl RefUnwindSafe for MongoDbProgressUnion
impl Send for MongoDbProgressUnion
impl Sync for MongoDbProgressUnion
impl Unpin for MongoDbProgressUnion
impl UnwindSafe for MongoDbProgressUnion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more