pub struct MigrateSyncCompleteCommandInput {
pub database_name: String,
pub commit_time_stamp: Option<OffsetDateTime>,
}
Expand description
Input for command that completes sync migration for a database.
Fields§
§database_name: String
Name of database
commit_time_stamp: Option<OffsetDateTime>
Time stamp to complete
Implementations§
Trait Implementations§
Source§impl Clone for MigrateSyncCompleteCommandInput
impl Clone for MigrateSyncCompleteCommandInput
Source§fn clone(&self) -> MigrateSyncCompleteCommandInput
fn clone(&self) -> MigrateSyncCompleteCommandInput
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 MigrateSyncCompleteCommandInput
impl<'de> Deserialize<'de> for MigrateSyncCompleteCommandInput
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 MigrateSyncCompleteCommandInput
impl PartialEq for MigrateSyncCompleteCommandInput
Source§fn eq(&self, other: &MigrateSyncCompleteCommandInput) -> bool
fn eq(&self, other: &MigrateSyncCompleteCommandInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MigrateSyncCompleteCommandInput
Auto Trait Implementations§
impl Freeze for MigrateSyncCompleteCommandInput
impl RefUnwindSafe for MigrateSyncCompleteCommandInput
impl Send for MigrateSyncCompleteCommandInput
impl Sync for MigrateSyncCompleteCommandInput
impl Unpin for MigrateSyncCompleteCommandInput
impl UnwindSafe for MigrateSyncCompleteCommandInput
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