pub struct ClickStackTableRawSqlChartConfigResponse {
pub config_type: Option<ClickStackTableRawSqlChartConfigConfigtype>,
pub connection_id: Option<String>,
pub display_type: Option<ClickStackTableRawSqlChartConfigDisplaytype>,
pub number_format: Option<ClickStackNumberFormatResponse>,
pub on_click: Option<ClickStackOnClickResponse>,
pub source_id: Option<String>,
pub sql_template: Option<String>,
}Expand description
ClickStackTableRawSqlChartConfig from the ClickHouse Cloud API, in response position.
Response variant of ClickStackTableRawSqlChartConfig: every field is Option<T>, so a field
the API drops or sends as null deserializes to None instead of
failing.
Fields§
§config_type: Option<ClickStackTableRawSqlChartConfigConfigtype>§connection_id: Option<String>§display_type: Option<ClickStackTableRawSqlChartConfigDisplaytype>§number_format: Option<ClickStackNumberFormatResponse>§on_click: Option<ClickStackOnClickResponse>§source_id: Option<String>§sql_template: Option<String>Trait Implementations§
Source§impl Clone for ClickStackTableRawSqlChartConfigResponse
impl Clone for ClickStackTableRawSqlChartConfigResponse
Source§fn clone(&self) -> ClickStackTableRawSqlChartConfigResponse
fn clone(&self) -> ClickStackTableRawSqlChartConfigResponse
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 ClickStackTableRawSqlChartConfigResponse
impl Default for ClickStackTableRawSqlChartConfigResponse
Source§fn default() -> ClickStackTableRawSqlChartConfigResponse
fn default() -> ClickStackTableRawSqlChartConfigResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackTableRawSqlChartConfigResponse
impl<'de> Deserialize<'de> for ClickStackTableRawSqlChartConfigResponse
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 ClickStackTableRawSqlChartConfigResponse
Auto Trait Implementations§
impl Freeze for ClickStackTableRawSqlChartConfigResponse
impl RefUnwindSafe for ClickStackTableRawSqlChartConfigResponse
impl Send for ClickStackTableRawSqlChartConfigResponse
impl Sync for ClickStackTableRawSqlChartConfigResponse
impl Unpin for ClickStackTableRawSqlChartConfigResponse
impl UnsafeUnpin for ClickStackTableRawSqlChartConfigResponse
impl UnwindSafe for ClickStackTableRawSqlChartConfigResponse
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