pub struct MongoDbCommandInput {
pub object_name: Option<String>,
}
Expand description
Describes the input to the ‘cancel’ and ‘restart’ MongoDB migration commands
Fields§
§object_name: Option<String>
The qualified name of a database or collection to act upon, or null to act upon the entire migration
Implementations§
Trait Implementations§
source§impl Clone for MongoDbCommandInput
impl Clone for MongoDbCommandInput
source§fn clone(&self) -> MongoDbCommandInput
fn clone(&self) -> MongoDbCommandInput
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 MongoDbCommandInput
impl Debug for MongoDbCommandInput
source§impl Default for MongoDbCommandInput
impl Default for MongoDbCommandInput
source§fn default() -> MongoDbCommandInput
fn default() -> MongoDbCommandInput
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for MongoDbCommandInput
impl<'de> Deserialize<'de> for MongoDbCommandInput
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<MongoDbCommandInput> for MongoDbCommandInput
impl PartialEq<MongoDbCommandInput> for MongoDbCommandInput
source§fn eq(&self, other: &MongoDbCommandInput) -> bool
fn eq(&self, other: &MongoDbCommandInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for MongoDbCommandInput
impl Serialize for MongoDbCommandInput
impl StructuralPartialEq for MongoDbCommandInput
Auto Trait Implementations§
impl RefUnwindSafe for MongoDbCommandInput
impl Send for MongoDbCommandInput
impl Sync for MongoDbCommandInput
impl Unpin for MongoDbCommandInput
impl UnwindSafe for MongoDbCommandInput
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