pub enum ChartType {
Bar,
Column,
Line,
Pie,
Area,
Scatter,
Doughnut,
Radar,
Surface,
Bubble,
Stock,
Unknown,
}Expand description
The type of an embedded chart as exposed by ResolvedSheet.
Variants§
Bar
Bar chart (horizontal bars).
Column
Column chart (vertical bars).
Line
Line chart.
Pie
Pie chart.
Area
Area chart.
Scatter
Scatter (XY) chart.
Doughnut
Doughnut chart.
Radar
Radar (spider) chart.
Surface
Surface chart.
Bubble
Bubble chart.
Stock
Stock (OHLC) chart.
Unknown
Unrecognized chart type.
Trait Implementations§
impl Copy for ChartType
impl Eq for ChartType
impl StructuralPartialEq for ChartType
Auto Trait Implementations§
impl Freeze for ChartType
impl RefUnwindSafe for ChartType
impl Send for ChartType
impl Sync for ChartType
impl Unpin for ChartType
impl UnsafeUnpin for ChartType
impl UnwindSafe for ChartType
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.