pub enum ClickStackCategoricalBarChartConfig {
ClickStackCategoricalBarBuilderChartConfig(ClickStackCategoricalBarBuilderChartConfig),
ClickStackCategoricalBarRawSqlChartConfig(ClickStackCategoricalBarRawSqlChartConfig),
Unknown(Value),
}Expand description
ClickStackCategoricalBarChartConfig - one of multiple variants.
Dispatched on the configType field (absent or non-string dispatches to the
builder variant, unless the payload carries a raw-SQL-only key); see the
discriminated_union! invocation below for the wire values.
Variants§
ClickStackCategoricalBarBuilderChartConfig(ClickStackCategoricalBarBuilderChartConfig)
ClickStackCategoricalBarRawSqlChartConfig(ClickStackCategoricalBarRawSqlChartConfig)
Unknown(Value)
Catch-all for unknown or newly-added values.
Holds the raw payload as serde_json::Value so it round-trips
losslessly; its Display emits the payload as compact JSON.
Trait Implementations§
Source§impl Clone for ClickStackCategoricalBarChartConfig
impl Clone for ClickStackCategoricalBarChartConfig
Source§fn clone(&self) -> ClickStackCategoricalBarChartConfig
fn clone(&self) -> ClickStackCategoricalBarChartConfig
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<'de> Deserialize<'de> for ClickStackCategoricalBarChartConfig
impl<'de> Deserialize<'de> for ClickStackCategoricalBarChartConfig
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 ClickStackCategoricalBarChartConfig
Auto Trait Implementations§
impl Freeze for ClickStackCategoricalBarChartConfig
impl RefUnwindSafe for ClickStackCategoricalBarChartConfig
impl Send for ClickStackCategoricalBarChartConfig
impl Sync for ClickStackCategoricalBarChartConfig
impl Unpin for ClickStackCategoricalBarChartConfig
impl UnsafeUnpin for ClickStackCategoricalBarChartConfig
impl UnwindSafe for ClickStackCategoricalBarChartConfig
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