pub struct MigrationValidationDatabaseLevelResult {
pub id: Option<String>,
pub migration_id: Option<String>,
pub source_database_name: Option<String>,
pub target_database_name: Option<String>,
pub started_on: Option<OffsetDateTime>,
pub ended_on: Option<OffsetDateTime>,
pub data_integrity_validation_result: Option<DataIntegrityValidationResult>,
pub schema_validation_result: Option<SchemaComparisonValidationResult>,
pub query_analysis_validation_result: Option<QueryAnalysisValidationResult>,
pub status: Option<ValidationStatus>,
}
Expand description
Database level validation results
Fields§
§id: Option<String>
Result identifier
migration_id: Option<String>
Migration Identifier
source_database_name: Option<String>
Name of the source database
target_database_name: Option<String>
Name of the target database
started_on: Option<OffsetDateTime>
Validation start time
ended_on: Option<OffsetDateTime>
Validation end time
data_integrity_validation_result: Option<DataIntegrityValidationResult>
Results for checksum based Data Integrity validation results
schema_validation_result: Option<SchemaComparisonValidationResult>
Results for schema comparison between the source and target
query_analysis_validation_result: Option<QueryAnalysisValidationResult>
Results for query analysis comparison between the source and target
status: Option<ValidationStatus>
Current status of the validation
Implementations§
Trait Implementations§
Source§impl Clone for MigrationValidationDatabaseLevelResult
impl Clone for MigrationValidationDatabaseLevelResult
Source§fn clone(&self) -> MigrationValidationDatabaseLevelResult
fn clone(&self) -> MigrationValidationDatabaseLevelResult
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 MigrationValidationDatabaseLevelResult
impl Default for MigrationValidationDatabaseLevelResult
Source§fn default() -> MigrationValidationDatabaseLevelResult
fn default() -> MigrationValidationDatabaseLevelResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MigrationValidationDatabaseLevelResult
impl<'de> Deserialize<'de> for MigrationValidationDatabaseLevelResult
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 MigrationValidationDatabaseLevelResult
impl PartialEq for MigrationValidationDatabaseLevelResult
Source§fn eq(&self, other: &MigrationValidationDatabaseLevelResult) -> bool
fn eq(&self, other: &MigrationValidationDatabaseLevelResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MigrationValidationDatabaseLevelResult
Auto Trait Implementations§
impl Freeze for MigrationValidationDatabaseLevelResult
impl RefUnwindSafe for MigrationValidationDatabaseLevelResult
impl Send for MigrationValidationDatabaseLevelResult
impl Sync for MigrationValidationDatabaseLevelResult
impl Unpin for MigrationValidationDatabaseLevelResult
impl UnwindSafe for MigrationValidationDatabaseLevelResult
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