pub struct ConnectToTargetAzureDbForPostgreSqlSyncTaskInput {
pub source_connection_info: PostgreSqlConnectionInfo,
pub target_connection_info: PostgreSqlConnectionInfo,
}Expand description
Input for the task that validates connection to Azure Database for PostgreSQL and target server requirements
Fields§
§source_connection_info: PostgreSqlConnectionInfoInformation for connecting to PostgreSQL server
target_connection_info: PostgreSqlConnectionInfoInformation for connecting to PostgreSQL server
Implementations§
Source§impl ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
impl ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
pub fn new( source_connection_info: PostgreSqlConnectionInfo, target_connection_info: PostgreSqlConnectionInfo, ) -> Self
Trait Implementations§
Source§impl Clone for ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
impl Clone for ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
Source§fn clone(&self) -> ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
fn clone(&self) -> ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
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 ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
impl<'de> Deserialize<'de> for ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
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 ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
impl PartialEq for ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
Source§fn eq(&self, other: &ConnectToTargetAzureDbForPostgreSqlSyncTaskInput) -> bool
fn eq(&self, other: &ConnectToTargetAzureDbForPostgreSqlSyncTaskInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
Auto Trait Implementations§
impl Freeze for ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
impl RefUnwindSafe for ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
impl Send for ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
impl Sync for ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
impl Unpin for ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
impl UnwindSafe for ConnectToTargetAzureDbForPostgreSqlSyncTaskInput
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