pub struct MongoDbCancelCommand {
pub command_properties: CommandProperties,
pub input: Option<MongoDbCommandInput>,
}
Expand description
Properties for the command that cancels a migration in whole or in part
Fields§
§command_properties: CommandProperties
§input: Option<MongoDbCommandInput>
Describes the input to the ‘cancel’ and ‘restart’ MongoDB migration commands
Implementations§
Source§impl MongoDbCancelCommand
impl MongoDbCancelCommand
pub fn new(command_properties: CommandProperties) -> Self
Trait Implementations§
Source§impl Clone for MongoDbCancelCommand
impl Clone for MongoDbCancelCommand
Source§fn clone(&self) -> MongoDbCancelCommand
fn clone(&self) -> MongoDbCancelCommand
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 MongoDbCancelCommand
impl Debug for MongoDbCancelCommand
Source§impl<'de> Deserialize<'de> for MongoDbCancelCommand
impl<'de> Deserialize<'de> for MongoDbCancelCommand
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 MongoDbCancelCommand
impl PartialEq for MongoDbCancelCommand
Source§impl Serialize for MongoDbCancelCommand
impl Serialize for MongoDbCancelCommand
impl StructuralPartialEq for MongoDbCancelCommand
Auto Trait Implementations§
impl Freeze for MongoDbCancelCommand
impl RefUnwindSafe for MongoDbCancelCommand
impl Send for MongoDbCancelCommand
impl Sync for MongoDbCancelCommand
impl Unpin for MongoDbCancelCommand
impl UnwindSafe for MongoDbCancelCommand
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