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