pub enum ClickStackDashboardChartSeries {
ClickStackTimeChartSeries(ClickStackTimeChartSeries),
ClickStackTableChartSeries(ClickStackTableChartSeries),
ClickStackNumberChartSeries(ClickStackNumberChartSeries),
ClickStackSearchChartSeries(ClickStackSearchChartSeries),
ClickStackMarkdownChartSeries(ClickStackMarkdownChartSeries),
Unknown(Value),
}Expand description
ClickStackDashboardChartSeries - one of multiple variants.
Dispatched on the type field; see the discriminated_union!
invocation below for the wire values.
Variants§
ClickStackTimeChartSeries(ClickStackTimeChartSeries)
ClickStackTableChartSeries(ClickStackTableChartSeries)
ClickStackNumberChartSeries(ClickStackNumberChartSeries)
ClickStackSearchChartSeries(ClickStackSearchChartSeries)
ClickStackMarkdownChartSeries(ClickStackMarkdownChartSeries)
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 ClickStackDashboardChartSeries
impl Clone for ClickStackDashboardChartSeries
Source§fn clone(&self) -> ClickStackDashboardChartSeries
fn clone(&self) -> ClickStackDashboardChartSeries
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 ClickStackDashboardChartSeries
impl<'de> Deserialize<'de> for ClickStackDashboardChartSeries
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 ClickStackDashboardChartSeries
Auto Trait Implementations§
impl Freeze for ClickStackDashboardChartSeries
impl RefUnwindSafe for ClickStackDashboardChartSeries
impl Send for ClickStackDashboardChartSeries
impl Sync for ClickStackDashboardChartSeries
impl Unpin for ClickStackDashboardChartSeries
impl UnsafeUnpin for ClickStackDashboardChartSeries
impl UnwindSafe for ClickStackDashboardChartSeries
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