pub struct SqlServerToPostgresConfig {
pub postgres_destination_config: Option<PostgresDestinationConfig>,
pub sqlserver_source_config: Option<SqlServerSourceConfig>,
}Expand description
Configuration for heterogeneous SQL Server to Cloud SQL for PostgreSQL migrations.
This type is not used in any activity, and only used as part of another schema.
Fields§
§postgres_destination_config: Option<PostgresDestinationConfig>Optional. Configuration for Postgres destination.
sqlserver_source_config: Option<SqlServerSourceConfig>Optional. Configuration for SQL Server source.
Trait Implementations§
Source§impl Clone for SqlServerToPostgresConfig
impl Clone for SqlServerToPostgresConfig
Source§fn clone(&self) -> SqlServerToPostgresConfig
fn clone(&self) -> SqlServerToPostgresConfig
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 SqlServerToPostgresConfig
impl Debug for SqlServerToPostgresConfig
Source§impl Default for SqlServerToPostgresConfig
impl Default for SqlServerToPostgresConfig
Source§fn default() -> SqlServerToPostgresConfig
fn default() -> SqlServerToPostgresConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SqlServerToPostgresConfig
impl<'de> Deserialize<'de> for SqlServerToPostgresConfig
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
impl Part for SqlServerToPostgresConfig
Auto Trait Implementations§
impl Freeze for SqlServerToPostgresConfig
impl RefUnwindSafe for SqlServerToPostgresConfig
impl Send for SqlServerToPostgresConfig
impl Sync for SqlServerToPostgresConfig
impl Unpin for SqlServerToPostgresConfig
impl UnwindSafe for SqlServerToPostgresConfig
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