#[repr(u32)]pub enum PlotOrientation {
Horizontal = 0,
Vertical = 1,
}
Expand description
Used to orient items on a plot (e.g. legends, labels, etc.)
Variants§
Trait Implementations§
Source§impl Clone for PlotOrientation
impl Clone for PlotOrientation
Source§fn clone(&self) -> PlotOrientation
fn clone(&self) -> PlotOrientation
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 PlotOrientation
impl Debug for PlotOrientation
impl Copy for PlotOrientation
Auto Trait Implementations§
impl Freeze for PlotOrientation
impl RefUnwindSafe for PlotOrientation
impl Send for PlotOrientation
impl Sync for PlotOrientation
impl Unpin for PlotOrientation
impl UnwindSafe for PlotOrientation
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