pub struct MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel {
pub migrate_schema_sql_server_sql_db_task_output: MigrateSchemaSqlServerSqlDbTaskOutput,
pub state: Option<MigrationState>,
pub started_on: Option<OffsetDateTime>,
pub ended_on: Option<OffsetDateTime>,
pub source_server_version: Option<String>,
pub source_server_brand_version: Option<String>,
pub target_server_version: Option<String>,
pub target_server_brand_version: Option<String>,
}Fields§
§migrate_schema_sql_server_sql_db_task_output: MigrateSchemaSqlServerSqlDbTaskOutput§state: Option<MigrationState>Current state of migration
started_on: Option<OffsetDateTime>Migration start time
ended_on: Option<OffsetDateTime>Migration end time
source_server_version: Option<String>Source server version
source_server_brand_version: Option<String>Source server brand version
target_server_version: Option<String>Target server version
target_server_brand_version: Option<String>Target server brand version
Implementations§
Source§impl MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
impl MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
pub fn new( migrate_schema_sql_server_sql_db_task_output: MigrateSchemaSqlServerSqlDbTaskOutput, ) -> Self
Trait Implementations§
Source§impl Clone for MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
impl Clone for MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
Source§fn clone(&self) -> MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
fn clone(&self) -> MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
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 MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
impl<'de> Deserialize<'de> for MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
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 MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
impl PartialEq for MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
Source§fn eq(
&self,
other: &MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel,
) -> bool
fn eq( &self, other: &MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
Auto Trait Implementations§
impl Freeze for MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
impl RefUnwindSafe for MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
impl Send for MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
impl Sync for MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
impl Unpin for MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
impl UnwindSafe for MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel
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