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