pub struct SqlServerDagConfig {
pub linked_server: Option<String>,
pub source_ag: Option<String>,
}Expand description
Configuration for distributed availability group (DAG) for the SQL Server homogeneous migration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§linked_server: Option<String>Required. The name of the linked server that points to the source SQL Server instance. Only used by DAG migrations.
source_ag: Option<String>Required. The name of the source availability group. Only used by DAG migrations.
Trait Implementations§
Source§impl Clone for SqlServerDagConfig
impl Clone for SqlServerDagConfig
Source§fn clone(&self) -> SqlServerDagConfig
fn clone(&self) -> SqlServerDagConfig
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 Debug for SqlServerDagConfig
impl Debug for SqlServerDagConfig
Source§impl Default for SqlServerDagConfig
impl Default for SqlServerDagConfig
Source§fn default() -> SqlServerDagConfig
fn default() -> SqlServerDagConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SqlServerDagConfig
impl<'de> Deserialize<'de> for SqlServerDagConfig
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 Serialize for SqlServerDagConfig
impl Serialize for SqlServerDagConfig
impl Part for SqlServerDagConfig
Auto Trait Implementations§
impl Freeze for SqlServerDagConfig
impl RefUnwindSafe for SqlServerDagConfig
impl Send for SqlServerDagConfig
impl Sync for SqlServerDagConfig
impl Unpin for SqlServerDagConfig
impl UnwindSafe for SqlServerDagConfig
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