pub enum CoordSystem {
Cartesian,
Flipped,
// some variants omitted
}Expand description
Coordinate system for the chart.
Variants§
Cartesian
Standard Cartesian (x right, y up).
Flipped
Flipped: x and y axes swapped (horizontal bars).
Trait Implementations§
Source§impl Clone for CoordSystem
impl Clone for CoordSystem
Source§fn clone(&self) -> CoordSystem
fn clone(&self) -> CoordSystem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CoordSystem
impl Debug for CoordSystem
Source§impl Default for CoordSystem
impl Default for CoordSystem
Source§fn default() -> CoordSystem
fn default() -> CoordSystem
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CoordSystem
impl RefUnwindSafe for CoordSystem
impl Send for CoordSystem
impl Sync for CoordSystem
impl Unpin for CoordSystem
impl UnsafeUnpin for CoordSystem
impl UnwindSafe for CoordSystem
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