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