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