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