pub struct MongoDbFinishCommand {
pub command_properties: CommandProperties,
pub input: Option<MongoDbFinishCommandInput>,
}
Expand description
Properties for the command that finishes a migration in whole or in part
Fields§
§command_properties: CommandProperties
§input: Option<MongoDbFinishCommandInput>
Describes the input to the ‘finish’ MongoDB migration command
Implementations§
source§impl MongoDbFinishCommand
impl MongoDbFinishCommand
pub fn new(command_properties: CommandProperties) -> Self
Trait Implementations§
source§impl Clone for MongoDbFinishCommand
impl Clone for MongoDbFinishCommand
source§fn clone(&self) -> MongoDbFinishCommand
fn clone(&self) -> MongoDbFinishCommand
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 MongoDbFinishCommand
impl Debug for MongoDbFinishCommand
source§impl<'de> Deserialize<'de> for MongoDbFinishCommand
impl<'de> Deserialize<'de> for MongoDbFinishCommand
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<MongoDbFinishCommand> for MongoDbFinishCommand
impl PartialEq<MongoDbFinishCommand> for MongoDbFinishCommand
source§fn eq(&self, other: &MongoDbFinishCommand) -> bool
fn eq(&self, other: &MongoDbFinishCommand) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for MongoDbFinishCommand
impl Serialize for MongoDbFinishCommand
impl StructuralPartialEq for MongoDbFinishCommand
Auto Trait Implementations§
impl RefUnwindSafe for MongoDbFinishCommand
impl Send for MongoDbFinishCommand
impl Sync for MongoDbFinishCommand
impl Unpin for MongoDbFinishCommand
impl UnwindSafe for MongoDbFinishCommand
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