pub enum ChartType {
VerticalBar,
HorizontalBar,
Pie,
Line,
Area,
}Expand description
Chart type enumeration
Variants§
VerticalBar
Vertical bar chart
HorizontalBar
Horizontal bar chart
Pie
Pie chart
Line
Line chart
Area
Area chart
Trait Implementations§
impl Copy 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