pub struct MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel {
pub migrate_sql_server_sql_db_sync_task_output: MigrateSqlServerSqlDbSyncTaskOutput,
pub started_on: Option<OffsetDateTime>,
pub ended_on: Option<OffsetDateTime>,
pub source_server_version: Option<String>,
pub source_server: Option<String>,
pub target_server_version: Option<String>,
pub target_server: Option<String>,
pub database_count: Option<i64>,
}
Fields§
§migrate_sql_server_sql_db_sync_task_output: MigrateSqlServerSqlDbSyncTaskOutput
§started_on: Option<OffsetDateTime>
Migration start time
ended_on: Option<OffsetDateTime>
Migration end time
source_server_version: Option<String>
Source server version
source_server: Option<String>
Source server name
target_server_version: Option<String>
Target server version
target_server: Option<String>
Target server name
database_count: Option<i64>
Count of databases
Implementations§
Source§impl MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
impl MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
pub fn new( migrate_sql_server_sql_db_sync_task_output: MigrateSqlServerSqlDbSyncTaskOutput, ) -> Self
Trait Implementations§
Source§impl Clone for MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
impl Clone for MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
Source§fn clone(&self) -> MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
fn clone(&self) -> MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
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 MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
impl<'de> Deserialize<'de> for MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
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 MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
impl PartialEq for MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
Source§fn eq(&self, other: &MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel) -> bool
fn eq(&self, other: &MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
Auto Trait Implementations§
impl Freeze for MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
impl RefUnwindSafe for MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
impl Send for MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
impl Sync for MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
impl Unpin for MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
impl UnwindSafe for MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel
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