pub struct MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel {Show 14 fields
pub migrate_postgre_sql_azure_db_for_postgre_sql_sync_task_output: MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput,
pub table_name: Option<String>,
pub database_name: Option<String>,
pub cdc_insert_counter: Option<i64>,
pub cdc_update_counter: Option<i64>,
pub cdc_delete_counter: Option<i64>,
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_postgre_sql_azure_db_for_postgre_sql_sync_task_output: MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput
§table_name: Option<String>
Name of the table
database_name: Option<String>
Name of the database
cdc_insert_counter: Option<i64>
Number of applied inserts
cdc_update_counter: Option<i64>
Number of applied updates
cdc_delete_counter: Option<i64>
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 MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
impl MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
pub fn new( migrate_postgre_sql_azure_db_for_postgre_sql_sync_task_output: MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput, ) -> Self
Trait Implementations§
Source§impl Clone for MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
impl Clone for MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
Source§fn clone(&self) -> MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
fn clone(&self) -> MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
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 MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
impl<'de> Deserialize<'de> for MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
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 MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
impl PartialEq for MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
Source§fn eq(
&self,
other: &MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel,
) -> bool
fn eq( &self, other: &MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
Auto Trait Implementations§
impl Freeze for MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
impl RefUnwindSafe for MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
impl Send for MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
impl Sync for MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
impl Unpin for MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
impl UnwindSafe for MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel
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