pub struct ClickPipePostgresPipeTableMapping {
pub excluded_columns: Vec<String>,
pub partition_key: String,
pub sorting_keys: Vec<String>,
pub source_schema_name: String,
pub source_table: String,
pub table_engine: ClickPipePostgresPipeTableMappingTableengine,
pub target_table: String,
pub use_custom_sorting_key: bool,
}Expand description
ClickPipePostgresPipeTableMapping from the ClickHouse Cloud API.
Fields§
§excluded_columns: Vec<String>§partition_key: String§sorting_keys: Vec<String>§source_schema_name: String§source_table: String§table_engine: ClickPipePostgresPipeTableMappingTableengine§target_table: String§use_custom_sorting_key: boolTrait Implementations§
Source§impl Clone for ClickPipePostgresPipeTableMapping
impl Clone for ClickPipePostgresPipeTableMapping
Source§fn clone(&self) -> ClickPipePostgresPipeTableMapping
fn clone(&self) -> ClickPipePostgresPipeTableMapping
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 Default for ClickPipePostgresPipeTableMapping
impl Default for ClickPipePostgresPipeTableMapping
Source§fn default() -> ClickPipePostgresPipeTableMapping
fn default() -> ClickPipePostgresPipeTableMapping
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickPipePostgresPipeTableMapping
impl<'de> Deserialize<'de> for ClickPipePostgresPipeTableMapping
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 ClickPipePostgresPipeTableMapping
impl PartialEq for ClickPipePostgresPipeTableMapping
Source§fn eq(&self, other: &ClickPipePostgresPipeTableMapping) -> bool
fn eq(&self, other: &ClickPipePostgresPipeTableMapping) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClickPipePostgresPipeTableMapping
Auto Trait Implementations§
impl Freeze for ClickPipePostgresPipeTableMapping
impl RefUnwindSafe for ClickPipePostgresPipeTableMapping
impl Send for ClickPipePostgresPipeTableMapping
impl Sync for ClickPipePostgresPipeTableMapping
impl Unpin for ClickPipePostgresPipeTableMapping
impl UnsafeUnpin for ClickPipePostgresPipeTableMapping
impl UnwindSafe for ClickPipePostgresPipeTableMapping
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