pub enum AxisPoints {
Categorical(Vec<Data>),
Numeric {
positives: Vec<Data>,
negatives: Vec<Data>,
},
}Expand description
Representation of Scale points on an Axis.
Variants§
Categorical(Vec<Data>)
Categorical points with no concept of negatives and positives.
Numeric
Numeric points with positive points and negative points split. Zero is considered a positive.
Trait Implementations§
Source§impl Clone for AxisPoints
impl Clone for AxisPoints
Source§fn clone(&self) -> AxisPoints
fn clone(&self) -> AxisPoints
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AxisPoints
impl Debug for AxisPoints
Source§impl PartialEq for AxisPoints
impl PartialEq for AxisPoints
impl StructuralPartialEq for AxisPoints
Auto Trait Implementations§
impl Freeze for AxisPoints
impl RefUnwindSafe for AxisPoints
impl Send for AxisPoints
impl Sync for AxisPoints
impl Unpin for AxisPoints
impl UnwindSafe for AxisPoints
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