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