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