pub enum ClickStackLineChartConfig {
ClickStackLineBuilderChartConfig(ClickStackLineBuilderChartConfig),
ClickStackLineRawSqlChartConfig(ClickStackLineRawSqlChartConfig),
Unknown(Value),
}Expand description
ClickStackLineChartConfig - 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§
ClickStackLineBuilderChartConfig(ClickStackLineBuilderChartConfig)
ClickStackLineRawSqlChartConfig(ClickStackLineRawSqlChartConfig)
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 ClickStackLineChartConfig
impl Clone for ClickStackLineChartConfig
Source§fn clone(&self) -> ClickStackLineChartConfig
fn clone(&self) -> ClickStackLineChartConfig
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 Debug for ClickStackLineChartConfig
impl Debug for ClickStackLineChartConfig
Source§impl Default for ClickStackLineChartConfig
impl Default for ClickStackLineChartConfig
Source§impl<'de> Deserialize<'de> for ClickStackLineChartConfig
impl<'de> Deserialize<'de> for ClickStackLineChartConfig
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 Display for ClickStackLineChartConfig
impl Display for ClickStackLineChartConfig
impl StructuralPartialEq for ClickStackLineChartConfig
Auto Trait Implementations§
impl Freeze for ClickStackLineChartConfig
impl RefUnwindSafe for ClickStackLineChartConfig
impl Send for ClickStackLineChartConfig
impl Sync for ClickStackLineChartConfig
impl Unpin for ClickStackLineChartConfig
impl UnsafeUnpin for ClickStackLineChartConfig
impl UnwindSafe for ClickStackLineChartConfig
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