pub enum CommandPropertiesUnion {
MigrateSqlServerAzureDbSqlMiComplete(MigrateMiSyncCompleteCommandProperties),
MigrateSyncCompleteDatabase(MigrateSyncCompleteCommandProperties),
Cancel(MongoDbCancelCommand),
Finish(MongoDbFinishCommand),
Restart(MongoDbRestartCommand),
}
Expand description
Command type.
Variants§
MigrateSqlServerAzureDbSqlMiComplete(MigrateMiSyncCompleteCommandProperties)
MigrateSyncCompleteDatabase(MigrateSyncCompleteCommandProperties)
Cancel(MongoDbCancelCommand)
Finish(MongoDbFinishCommand)
Restart(MongoDbRestartCommand)
Trait Implementations§
Source§impl Clone for CommandPropertiesUnion
impl Clone for CommandPropertiesUnion
Source§fn clone(&self) -> CommandPropertiesUnion
fn clone(&self) -> CommandPropertiesUnion
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 CommandPropertiesUnion
impl Debug for CommandPropertiesUnion
Source§impl<'de> Deserialize<'de> for CommandPropertiesUnion
impl<'de> Deserialize<'de> for CommandPropertiesUnion
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 CommandPropertiesUnion
impl PartialEq for CommandPropertiesUnion
Source§impl Serialize for CommandPropertiesUnion
impl Serialize for CommandPropertiesUnion
impl StructuralPartialEq for CommandPropertiesUnion
Auto Trait Implementations§
impl Freeze for CommandPropertiesUnion
impl RefUnwindSafe for CommandPropertiesUnion
impl Send for CommandPropertiesUnion
impl Sync for CommandPropertiesUnion
impl Unpin for CommandPropertiesUnion
impl UnwindSafe for CommandPropertiesUnion
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