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