pub struct MigrateSyncCompleteCommandProperties {
pub command_properties: CommandProperties,
pub input: Option<MigrateSyncCompleteCommandInput>,
pub output: Option<MigrateSyncCompleteCommandOutput>,
}
Expand description
Properties for the command that completes sync migration for a database.
Fields§
§command_properties: CommandProperties
§input: Option<MigrateSyncCompleteCommandInput>
Input for command that completes sync migration for a database.
output: Option<MigrateSyncCompleteCommandOutput>
Output for command that completes sync migration for a database.
Implementations§
Source§impl MigrateSyncCompleteCommandProperties
impl MigrateSyncCompleteCommandProperties
pub fn new(command_properties: CommandProperties) -> Self
Trait Implementations§
Source§impl Clone for MigrateSyncCompleteCommandProperties
impl Clone for MigrateSyncCompleteCommandProperties
Source§fn clone(&self) -> MigrateSyncCompleteCommandProperties
fn clone(&self) -> MigrateSyncCompleteCommandProperties
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<'de> Deserialize<'de> for MigrateSyncCompleteCommandProperties
impl<'de> Deserialize<'de> for MigrateSyncCompleteCommandProperties
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 MigrateSyncCompleteCommandProperties
impl PartialEq for MigrateSyncCompleteCommandProperties
Source§fn eq(&self, other: &MigrateSyncCompleteCommandProperties) -> bool
fn eq(&self, other: &MigrateSyncCompleteCommandProperties) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MigrateSyncCompleteCommandProperties
Auto Trait Implementations§
impl Freeze for MigrateSyncCompleteCommandProperties
impl RefUnwindSafe for MigrateSyncCompleteCommandProperties
impl Send for MigrateSyncCompleteCommandProperties
impl Sync for MigrateSyncCompleteCommandProperties
impl Unpin for MigrateSyncCompleteCommandProperties
impl UnwindSafe for MigrateSyncCompleteCommandProperties
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