pub enum Series {
Show 22 variants
Bar(Bar),
Bar3d(Bar3d),
Boxplot(Boxplot),
Candlestick(Candlestick),
Custom(Custom),
EffectScatter(EffectScatter),
Funnel(Funnel),
Gauge(Gauge),
Graph(Graph),
Heatmap(Heatmap),
Line(Line),
Map(Map),
Parallel(Parallel),
PictorialBar(PictorialBar),
Pie(Pie),
Radar(Radar),
Sankey(Sankey),
Scatter(Scatter),
Sunburst(Sunburst),
ThemeRiver(ThemeRiver),
Tree(Tree),
Treemap(Treemap),
}
Variants§
Bar(Bar)
Bar3d(Bar3d)
Boxplot(Boxplot)
Candlestick(Candlestick)
Custom(Custom)
EffectScatter(EffectScatter)
Funnel(Funnel)
Gauge(Gauge)
Graph(Graph)
Heatmap(Heatmap)
Line(Line)
Map(Map)
Parallel(Parallel)
PictorialBar(PictorialBar)
Pie(Pie)
Radar(Radar)
Sankey(Sankey)
Scatter(Scatter)
Sunburst(Sunburst)
ThemeRiver(ThemeRiver)
Tree(Tree)
Treemap(Treemap)
Trait Implementations§
Source§impl From<Candlestick> for Series
impl From<Candlestick> for Series
Source§fn from(series: Candlestick) -> Self
fn from(series: Candlestick) -> Self
Converts to this type from the input type.
Source§impl From<EffectScatter> for Series
impl From<EffectScatter> for Series
Source§fn from(series: EffectScatter) -> Self
fn from(series: EffectScatter) -> Self
Converts to this type from the input type.
Source§impl From<PictorialBar> for Series
impl From<PictorialBar> for Series
Source§fn from(series: PictorialBar) -> Self
fn from(series: PictorialBar) -> Self
Converts to this type from the input type.
Source§impl From<ThemeRiver> for Series
impl From<ThemeRiver> for Series
Source§fn from(series: ThemeRiver) -> Self
fn from(series: ThemeRiver) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Series
impl RefUnwindSafe for Series
impl Send for Series
impl Sync for Series
impl Unpin for Series
impl UnwindSafe for Series
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more