pub struct ClickPipePostgresSource {
pub authentication: ClickPipePostgresSourceAuthentication,
pub ca_certificate: String,
pub database: String,
pub host: String,
pub iam_role: String,
pub port: i64,
pub settings: ClickPipePostgresPipeSettings,
pub table_mappings: Vec<ClickPipePostgresPipeTableMapping>,
pub tls_host: String,
pub type: Option<ClickPipePostgresSourceType>,
}Expand description
ClickPipePostgresSource from the ClickHouse Cloud API.
Fields§
§authentication: ClickPipePostgresSourceAuthentication§ca_certificate: String§database: String§host: String§iam_role: String§port: i64§settings: ClickPipePostgresPipeSettings§table_mappings: Vec<ClickPipePostgresPipeTableMapping>§tls_host: String§type: Option<ClickPipePostgresSourceType>Trait Implementations§
Source§impl Clone for ClickPipePostgresSource
impl Clone for ClickPipePostgresSource
Source§fn clone(&self) -> ClickPipePostgresSource
fn clone(&self) -> ClickPipePostgresSource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClickPipePostgresSource
impl Debug for ClickPipePostgresSource
Source§impl Default for ClickPipePostgresSource
impl Default for ClickPipePostgresSource
Source§fn default() -> ClickPipePostgresSource
fn default() -> ClickPipePostgresSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickPipePostgresSource
impl<'de> Deserialize<'de> for ClickPipePostgresSource
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 ClickPipePostgresSource
impl PartialEq for ClickPipePostgresSource
Source§fn eq(&self, other: &ClickPipePostgresSource) -> bool
fn eq(&self, other: &ClickPipePostgresSource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClickPipePostgresSource
impl Serialize for ClickPipePostgresSource
impl StructuralPartialEq for ClickPipePostgresSource
Auto Trait Implementations§
impl Freeze for ClickPipePostgresSource
impl RefUnwindSafe for ClickPipePostgresSource
impl Send for ClickPipePostgresSource
impl Sync for ClickPipePostgresSource
impl Unpin for ClickPipePostgresSource
impl UnsafeUnpin for ClickPipePostgresSource
impl UnwindSafe for ClickPipePostgresSource
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