pub struct NonSqlDataMigrationTableResult {
pub result_code: Option<ResultCode>,
pub source_name: Option<String>,
pub target_name: Option<String>,
pub source_row_count: Option<i64>,
pub target_row_count: Option<i64>,
pub elapsed_time_in_miliseconds: Option<f64>,
pub errors: Vec<DataMigrationError>,
}
Expand description
Object used to report the data migration results of a table
Fields§
§result_code: Option<ResultCode>
Result code of the data migration
source_name: Option<String>
Name of the source table
target_name: Option<String>
Name of the target table
source_row_count: Option<i64>
Number of rows in the source table
target_row_count: Option<i64>
Number of rows in the target table
elapsed_time_in_miliseconds: Option<f64>
Time taken to migrate the data
errors: Vec<DataMigrationError>
List of errors, if any, during migration
Implementations§
Trait Implementations§
Source§impl Clone for NonSqlDataMigrationTableResult
impl Clone for NonSqlDataMigrationTableResult
Source§fn clone(&self) -> NonSqlDataMigrationTableResult
fn clone(&self) -> NonSqlDataMigrationTableResult
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 Default for NonSqlDataMigrationTableResult
impl Default for NonSqlDataMigrationTableResult
Source§fn default() -> NonSqlDataMigrationTableResult
fn default() -> NonSqlDataMigrationTableResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NonSqlDataMigrationTableResult
impl<'de> Deserialize<'de> for NonSqlDataMigrationTableResult
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 NonSqlDataMigrationTableResult
impl PartialEq for NonSqlDataMigrationTableResult
Source§fn eq(&self, other: &NonSqlDataMigrationTableResult) -> bool
fn eq(&self, other: &NonSqlDataMigrationTableResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for NonSqlDataMigrationTableResult
Auto Trait Implementations§
impl Freeze for NonSqlDataMigrationTableResult
impl RefUnwindSafe for NonSqlDataMigrationTableResult
impl Send for NonSqlDataMigrationTableResult
impl Sync for NonSqlDataMigrationTableResult
impl Unpin for NonSqlDataMigrationTableResult
impl UnwindSafe for NonSqlDataMigrationTableResult
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