pub struct MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel {Show 16 fields
pub migrate_oracle_azure_db_postgre_sql_sync_task_output: MigrateOracleAzureDbPostgreSqlSyncTaskOutput,
pub database_name: Option<String>,
pub started_on: Option<OffsetDateTime>,
pub ended_on: Option<OffsetDateTime>,
pub migration_state: Option<SyncDatabaseMigrationReportingState>,
pub incoming_changes: Option<i64>,
pub applied_changes: Option<i64>,
pub cdc_insert_counter: Option<i64>,
pub cdc_delete_counter: Option<i64>,
pub cdc_update_counter: Option<i64>,
pub full_load_completed_tables: Option<i64>,
pub full_load_loading_tables: Option<i64>,
pub full_load_queued_tables: Option<i64>,
pub full_load_errored_tables: Option<i64>,
pub initialization_completed: Option<bool>,
pub latency: Option<i64>,
}Fields§
§migrate_oracle_azure_db_postgre_sql_sync_task_output: MigrateOracleAzureDbPostgreSqlSyncTaskOutput§database_name: Option<String>Name of the database
started_on: Option<OffsetDateTime>Migration start time
ended_on: Option<OffsetDateTime>Migration end time
migration_state: Option<SyncDatabaseMigrationReportingState>Enum of the different state of database level online migration.
incoming_changes: Option<i64>Number of incoming changes
applied_changes: Option<i64>Number of applied changes
cdc_insert_counter: Option<i64>Number of cdc inserts
cdc_delete_counter: Option<i64>Number of cdc deletes
cdc_update_counter: Option<i64>Number of cdc updates
full_load_completed_tables: Option<i64>Number of tables completed in full load
full_load_loading_tables: Option<i64>Number of tables loading in full load
full_load_queued_tables: Option<i64>Number of tables queued in full load
full_load_errored_tables: Option<i64>Number of tables errored in full load
initialization_completed: Option<bool>Indicates if initial load (full load) has been completed
latency: Option<i64>CDC apply latency
Implementations§
Source§impl MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
impl MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
pub fn new( migrate_oracle_azure_db_postgre_sql_sync_task_output: MigrateOracleAzureDbPostgreSqlSyncTaskOutput, ) -> Self
Trait Implementations§
Source§impl Clone for MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
impl Clone for MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
Source§fn clone(&self) -> MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
fn clone(&self) -> MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
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 MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
impl<'de> Deserialize<'de> for MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
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 MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
impl PartialEq for MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
Source§fn eq(
&self,
other: &MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel,
) -> bool
fn eq( &self, other: &MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
Auto Trait Implementations§
impl Freeze for MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
impl RefUnwindSafe for MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
impl Send for MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
impl Sync for MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
impl Unpin for MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
impl UnwindSafe for MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel
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