pub struct ClickStackLineRawSqlChartConfigResponse {
pub align_date_range_to_granularity: Option<bool>,
pub compare_to_previous_period: Option<bool>,
pub config_type: Option<ClickStackLineRawSqlChartConfigConfigtype>,
pub connection_id: Option<String>,
pub display_type: Option<ClickStackLineRawSqlChartConfigDisplaytype>,
pub fill_nulls: Option<bool>,
pub fit_y_axis_to_data: Option<bool>,
pub number_format: Option<ClickStackNumberFormatResponse>,
pub source_id: Option<String>,
pub sql_template: Option<String>,
}Expand description
ClickStackLineRawSqlChartConfig from the ClickHouse Cloud API, in response position.
Response variant of ClickStackLineRawSqlChartConfig: 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>§compare_to_previous_period: Option<bool>§config_type: Option<ClickStackLineRawSqlChartConfigConfigtype>§connection_id: Option<String>§display_type: Option<ClickStackLineRawSqlChartConfigDisplaytype>§fill_nulls: Option<bool>§fit_y_axis_to_data: Option<bool>§number_format: Option<ClickStackNumberFormatResponse>§source_id: Option<String>§sql_template: Option<String>Trait Implementations§
Source§impl Clone for ClickStackLineRawSqlChartConfigResponse
impl Clone for ClickStackLineRawSqlChartConfigResponse
Source§fn clone(&self) -> ClickStackLineRawSqlChartConfigResponse
fn clone(&self) -> ClickStackLineRawSqlChartConfigResponse
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 ClickStackLineRawSqlChartConfigResponse
impl Default for ClickStackLineRawSqlChartConfigResponse
Source§fn default() -> ClickStackLineRawSqlChartConfigResponse
fn default() -> ClickStackLineRawSqlChartConfigResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackLineRawSqlChartConfigResponse
impl<'de> Deserialize<'de> for ClickStackLineRawSqlChartConfigResponse
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 ClickStackLineRawSqlChartConfigResponse
Auto Trait Implementations§
impl Freeze for ClickStackLineRawSqlChartConfigResponse
impl RefUnwindSafe for ClickStackLineRawSqlChartConfigResponse
impl Send for ClickStackLineRawSqlChartConfigResponse
impl Sync for ClickStackLineRawSqlChartConfigResponse
impl Unpin for ClickStackLineRawSqlChartConfigResponse
impl UnsafeUnpin for ClickStackLineRawSqlChartConfigResponse
impl UnwindSafe for ClickStackLineRawSqlChartConfigResponse
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