pub struct ClickStackTableBuilderChartConfig {
pub as_ratio: Option<bool>,
pub display_type: ClickStackTableBuilderChartConfigDisplaytype,
pub group_by: Option<String>,
pub group_by_columns_on_left: Option<bool>,
pub having: Option<String>,
pub number_format: Option<ClickStackNumberFormat>,
pub on_click: Option<ClickStackOnClick>,
pub order_by: Option<String>,
pub select: Vec<ClickStackSelectItem>,
pub source_id: String,
}Expand description
ClickStackTableBuilderChartConfig from the ClickHouse Cloud API.
Fields§
§as_ratio: Option<bool>§display_type: ClickStackTableBuilderChartConfigDisplaytype§group_by: Option<String>§group_by_columns_on_left: Option<bool>§having: Option<String>§number_format: Option<ClickStackNumberFormat>§on_click: Option<ClickStackOnClick>§order_by: Option<String>§select: Vec<ClickStackSelectItem>§source_id: StringTrait Implementations§
Source§impl Clone for ClickStackTableBuilderChartConfig
impl Clone for ClickStackTableBuilderChartConfig
Source§fn clone(&self) -> ClickStackTableBuilderChartConfig
fn clone(&self) -> ClickStackTableBuilderChartConfig
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 ClickStackTableBuilderChartConfig
impl Default for ClickStackTableBuilderChartConfig
Source§fn default() -> ClickStackTableBuilderChartConfig
fn default() -> ClickStackTableBuilderChartConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickStackTableBuilderChartConfig
impl<'de> Deserialize<'de> for ClickStackTableBuilderChartConfig
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
Source§impl PartialEq for ClickStackTableBuilderChartConfig
impl PartialEq for ClickStackTableBuilderChartConfig
Source§fn eq(&self, other: &ClickStackTableBuilderChartConfig) -> bool
fn eq(&self, other: &ClickStackTableBuilderChartConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClickStackTableBuilderChartConfig
Auto Trait Implementations§
impl Freeze for ClickStackTableBuilderChartConfig
impl RefUnwindSafe for ClickStackTableBuilderChartConfig
impl Send for ClickStackTableBuilderChartConfig
impl Sync for ClickStackTableBuilderChartConfig
impl Unpin for ClickStackTableBuilderChartConfig
impl UnsafeUnpin for ClickStackTableBuilderChartConfig
impl UnwindSafe for ClickStackTableBuilderChartConfig
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