pub struct MigrateSqlServerSqlMiSyncTaskProperties {
pub project_task_properties: ProjectTaskProperties,
pub input: Option<MigrateSqlServerSqlMiSyncTaskInput>,
pub output: Vec<MigrateSqlServerSqlMiSyncTaskOutputUnion>,
}
Expand description
Properties for task that migrates SQL Server databases to Azure SQL Database Managed Instance sync scenario
Fields§
§project_task_properties: ProjectTaskProperties
§input: Option<MigrateSqlServerSqlMiSyncTaskInput>
Input for task that migrates SQL Server databases to Azure SQL Database Managed Instance online scenario.
output: Vec<MigrateSqlServerSqlMiSyncTaskOutputUnion>
Task output. This is ignored if submitted.
Implementations§
Source§impl MigrateSqlServerSqlMiSyncTaskProperties
impl MigrateSqlServerSqlMiSyncTaskProperties
pub fn new(project_task_properties: ProjectTaskProperties) -> Self
Trait Implementations§
Source§impl Clone for MigrateSqlServerSqlMiSyncTaskProperties
impl Clone for MigrateSqlServerSqlMiSyncTaskProperties
Source§fn clone(&self) -> MigrateSqlServerSqlMiSyncTaskProperties
fn clone(&self) -> MigrateSqlServerSqlMiSyncTaskProperties
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 MigrateSqlServerSqlMiSyncTaskProperties
impl<'de> Deserialize<'de> for MigrateSqlServerSqlMiSyncTaskProperties
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 MigrateSqlServerSqlMiSyncTaskProperties
impl PartialEq for MigrateSqlServerSqlMiSyncTaskProperties
Source§fn eq(&self, other: &MigrateSqlServerSqlMiSyncTaskProperties) -> bool
fn eq(&self, other: &MigrateSqlServerSqlMiSyncTaskProperties) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MigrateSqlServerSqlMiSyncTaskProperties
Auto Trait Implementations§
impl Freeze for MigrateSqlServerSqlMiSyncTaskProperties
impl RefUnwindSafe for MigrateSqlServerSqlMiSyncTaskProperties
impl Send for MigrateSqlServerSqlMiSyncTaskProperties
impl Sync for MigrateSqlServerSqlMiSyncTaskProperties
impl Unpin for MigrateSqlServerSqlMiSyncTaskProperties
impl UnwindSafe for MigrateSqlServerSqlMiSyncTaskProperties
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