pub struct MongoDbDatabaseProgress {
pub mongo_db_progress: MongoDbProgress,
pub collections: Option<Value>,
}
Expand description
Describes the progress of a database
Fields§
§mongo_db_progress: MongoDbProgress
§collections: Option<Value>
The progress of the collections in the database. The keys are the unqualified names of the collections
Implementations§
Source§impl MongoDbDatabaseProgress
impl MongoDbDatabaseProgress
pub fn new(mongo_db_progress: MongoDbProgress) -> Self
Trait Implementations§
Source§impl Clone for MongoDbDatabaseProgress
impl Clone for MongoDbDatabaseProgress
Source§fn clone(&self) -> MongoDbDatabaseProgress
fn clone(&self) -> MongoDbDatabaseProgress
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 MongoDbDatabaseProgress
impl Debug for MongoDbDatabaseProgress
Source§impl<'de> Deserialize<'de> for MongoDbDatabaseProgress
impl<'de> Deserialize<'de> for MongoDbDatabaseProgress
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 MongoDbDatabaseProgress
impl PartialEq for MongoDbDatabaseProgress
Source§impl Serialize for MongoDbDatabaseProgress
impl Serialize for MongoDbDatabaseProgress
impl StructuralPartialEq for MongoDbDatabaseProgress
Auto Trait Implementations§
impl Freeze for MongoDbDatabaseProgress
impl RefUnwindSafe for MongoDbDatabaseProgress
impl Send for MongoDbDatabaseProgress
impl Sync for MongoDbDatabaseProgress
impl Unpin for MongoDbDatabaseProgress
impl UnwindSafe for MongoDbDatabaseProgress
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