pub enum ChartType {
Line,
Bar,
Scatter,
}Expand description
Visual representation for a Chart series.
Registration policy: Specification Required — new variants require a LPAR-14 §15 amendment.
Variants§
Line
Connect consecutive points with line segments.
Bar
Draw one vertical bar per point per series.
Scatter
Draw one small filled square per point.
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