#[repr(u32)]pub enum PlotLocation {
Center = 0,
North = 1,
South = 2,
West = 4,
East = 8,
NorthWest = 5,
NorthEast = 9,
SouthWest = 6,
SouthEast = 10,
}Expand description
Plot location for legends, labels, etc.
Variants§
Center = 0
North = 1
South = 2
West = 4
East = 8
NorthWest = 5
NorthEast = 9
SouthWest = 6
SouthEast = 10
Trait Implementations§
Source§impl Clone for PlotLocation
impl Clone for PlotLocation
Source§fn clone(&self) -> PlotLocation
fn clone(&self) -> PlotLocation
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 PlotLocation
impl Debug for PlotLocation
Source§impl PartialEq for PlotLocation
impl PartialEq for PlotLocation
impl Copy for PlotLocation
impl Eq for PlotLocation
impl StructuralPartialEq for PlotLocation
Auto Trait Implementations§
impl Freeze for PlotLocation
impl RefUnwindSafe for PlotLocation
impl Send for PlotLocation
impl Sync for PlotLocation
impl Unpin for PlotLocation
impl UnwindSafe for PlotLocation
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