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