Struct azure_mgmt_datamigration::package_preview_2022_03::models::MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
source · pub struct MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel {Show 14 fields
pub migrate_my_sql_azure_db_for_my_sql_sync_task_output: MigrateMySqlAzureDbForMySqlSyncTaskOutput,
pub table_name: Option<String>,
pub database_name: Option<String>,
pub cdc_insert_counter: Option<String>,
pub cdc_update_counter: Option<String>,
pub cdc_delete_counter: Option<String>,
pub full_load_est_finish_time: Option<OffsetDateTime>,
pub full_load_started_on: Option<OffsetDateTime>,
pub full_load_ended_on: Option<OffsetDateTime>,
pub full_load_total_rows: Option<i64>,
pub state: Option<SyncTableMigrationState>,
pub total_changes_applied: Option<i64>,
pub data_errors_counter: Option<i64>,
pub last_modified_time: Option<OffsetDateTime>,
}
Fields§
§migrate_my_sql_azure_db_for_my_sql_sync_task_output: MigrateMySqlAzureDbForMySqlSyncTaskOutput
§table_name: Option<String>
Name of the table
database_name: Option<String>
Name of the database
cdc_insert_counter: Option<String>
Number of applied inserts
cdc_update_counter: Option<String>
Number of applied updates
cdc_delete_counter: Option<String>
Number of applied deletes
full_load_est_finish_time: Option<OffsetDateTime>
Estimate to finish full load
full_load_started_on: Option<OffsetDateTime>
Full load start time
full_load_ended_on: Option<OffsetDateTime>
Full load end time
full_load_total_rows: Option<i64>
Number of rows applied in full load
state: Option<SyncTableMigrationState>
Enum of the different state of table level online migration.
total_changes_applied: Option<i64>
Total number of applied changes
data_errors_counter: Option<i64>
Number of data errors occurred
last_modified_time: Option<OffsetDateTime>
Last modified time on target
Implementations§
source§impl MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
impl MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
pub fn new( migrate_my_sql_azure_db_for_my_sql_sync_task_output: MigrateMySqlAzureDbForMySqlSyncTaskOutput ) -> Self
Trait Implementations§
source§impl Clone for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
impl Clone for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
source§fn clone(&self) -> MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
fn clone(&self) -> MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
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<'de> Deserialize<'de> for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
impl<'de> Deserialize<'de> for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
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<MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel> for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
impl PartialEq<MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel> for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
source§fn eq(
&self,
other: &MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
) -> bool
fn eq( &self, other: &MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel ) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
Auto Trait Implementations§
impl RefUnwindSafe for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
impl Send for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
impl Sync for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
impl Unpin for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
impl UnwindSafe for MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel
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