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 copy 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<MongoDbDatabaseProgress> for MongoDbDatabaseProgress
impl PartialEq<MongoDbDatabaseProgress> for MongoDbDatabaseProgress
source§fn eq(&self, other: &MongoDbDatabaseProgress) -> bool
fn eq(&self, other: &MongoDbDatabaseProgress) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for MongoDbDatabaseProgress
impl Serialize for MongoDbDatabaseProgress
impl StructuralPartialEq for MongoDbDatabaseProgress
Auto Trait Implementations§
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