pub struct MongoDbFinishCommandInput {
pub mongo_db_command_input: MongoDbCommandInput,
pub immediate: bool,
}
Expand description
Describes the input to the ‘finish’ MongoDB migration command
Fields§
§mongo_db_command_input: MongoDbCommandInput
§immediate: bool
If true, replication for the affected objects will be stopped immediately. If false, the migrator will finish replaying queued events before finishing the replication.
Implementations§
Trait Implementations§
Source§impl Clone for MongoDbFinishCommandInput
impl Clone for MongoDbFinishCommandInput
Source§fn clone(&self) -> MongoDbFinishCommandInput
fn clone(&self) -> MongoDbFinishCommandInput
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 MongoDbFinishCommandInput
impl Debug for MongoDbFinishCommandInput
Source§impl<'de> Deserialize<'de> for MongoDbFinishCommandInput
impl<'de> Deserialize<'de> for MongoDbFinishCommandInput
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
impl StructuralPartialEq for MongoDbFinishCommandInput
Auto Trait Implementations§
impl Freeze for MongoDbFinishCommandInput
impl RefUnwindSafe for MongoDbFinishCommandInput
impl Send for MongoDbFinishCommandInput
impl Sync for MongoDbFinishCommandInput
impl Unpin for MongoDbFinishCommandInput
impl UnwindSafe for MongoDbFinishCommandInput
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