#[repr(i32)]pub enum LegendLocation {
Center = 0,
North = 1,
South = 2,
West = 4,
East = 8,
NorthWest = 5,
NorthEast = 9,
SouthWest = 6,
SouthEast = 10,
}Expand description
Legend location options (ImPlotLocation)
Variants§
Center = 0
North = 1
South = 2
West = 4
East = 8
NorthWest = 5
NorthEast = 9
SouthWest = 6
SouthEast = 10
Auto Trait Implementations§
impl Freeze for LegendLocation
impl RefUnwindSafe for LegendLocation
impl Send for LegendLocation
impl Sync for LegendLocation
impl Unpin for LegendLocation
impl UnsafeUnpin for LegendLocation
impl UnwindSafe for LegendLocation
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