pub struct ClickPipePostgresPipeTableMappingResponse {
pub excluded_columns: Option<Vec<String>>,
pub partition_by_expr: Option<String>,
pub partition_key: Option<String>,
pub sorting_keys: Option<Vec<String>>,
pub source_schema_name: Option<String>,
pub source_table: Option<String>,
pub table_engine: Option<ClickPipePostgresPipeTableMappingTableengine>,
pub target_table: Option<String>,
pub use_custom_sorting_key: Option<bool>,
}Expand description
ClickPipePostgresPipeTableMapping from the ClickHouse Cloud API, in
response position.
Response variant of ClickPipePostgresPipeTableMapping: every field is
Option<T>, so a field the API drops or sends as null deserializes to
None instead of failing.
Fields§
§excluded_columns: Option<Vec<String>>§partition_by_expr: Option<String>§partition_key: Option<String>§sorting_keys: Option<Vec<String>>§source_schema_name: Option<String>§source_table: Option<String>§table_engine: Option<ClickPipePostgresPipeTableMappingTableengine>§target_table: Option<String>§use_custom_sorting_key: Option<bool>Trait Implementations§
Source§impl Clone for ClickPipePostgresPipeTableMappingResponse
impl Clone for ClickPipePostgresPipeTableMappingResponse
Source§fn clone(&self) -> ClickPipePostgresPipeTableMappingResponse
fn clone(&self) -> ClickPipePostgresPipeTableMappingResponse
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 ClickPipePostgresPipeTableMappingResponse
impl Default for ClickPipePostgresPipeTableMappingResponse
Source§fn default() -> ClickPipePostgresPipeTableMappingResponse
fn default() -> ClickPipePostgresPipeTableMappingResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickPipePostgresPipeTableMappingResponse
impl<'de> Deserialize<'de> for ClickPipePostgresPipeTableMappingResponse
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
impl StructuralPartialEq for ClickPipePostgresPipeTableMappingResponse
Auto Trait Implementations§
impl Freeze for ClickPipePostgresPipeTableMappingResponse
impl RefUnwindSafe for ClickPipePostgresPipeTableMappingResponse
impl Send for ClickPipePostgresPipeTableMappingResponse
impl Sync for ClickPipePostgresPipeTableMappingResponse
impl Unpin for ClickPipePostgresPipeTableMappingResponse
impl UnsafeUnpin for ClickPipePostgresPipeTableMappingResponse
impl UnwindSafe for ClickPipePostgresPipeTableMappingResponse
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