pub struct MigrateSqlServerSqlMiDatabaseInput {
pub name: String,
pub restore_database_name: String,
pub backup_file_share: Option<FileShare>,
pub backup_file_paths: Vec<String>,
}
Expand description
Database specific information for SQL to Azure SQL DB Managed Instance migration task inputs
Fields§
§name: String
Name of the database
restore_database_name: String
Name of the database at destination
File share information with Path, Username, and Password.
backup_file_paths: Vec<String>
The list of backup files to be used in case of existing backups.
Implementations§
Trait Implementations§
Source§impl Clone for MigrateSqlServerSqlMiDatabaseInput
impl Clone for MigrateSqlServerSqlMiDatabaseInput
Source§fn clone(&self) -> MigrateSqlServerSqlMiDatabaseInput
fn clone(&self) -> MigrateSqlServerSqlMiDatabaseInput
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 MigrateSqlServerSqlMiDatabaseInput
impl<'de> Deserialize<'de> for MigrateSqlServerSqlMiDatabaseInput
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 MigrateSqlServerSqlMiDatabaseInput
impl PartialEq for MigrateSqlServerSqlMiDatabaseInput
Source§fn eq(&self, other: &MigrateSqlServerSqlMiDatabaseInput) -> bool
fn eq(&self, other: &MigrateSqlServerSqlMiDatabaseInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MigrateSqlServerSqlMiDatabaseInput
Auto Trait Implementations§
impl Freeze for MigrateSqlServerSqlMiDatabaseInput
impl RefUnwindSafe for MigrateSqlServerSqlMiDatabaseInput
impl Send for MigrateSqlServerSqlMiDatabaseInput
impl Sync for MigrateSqlServerSqlMiDatabaseInput
impl Unpin for MigrateSqlServerSqlMiDatabaseInput
impl UnwindSafe for MigrateSqlServerSqlMiDatabaseInput
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