#[repr(i32)]pub enum Marker {
None = -1,
Circle = 0,
Square = 1,
Diamond = 2,
Up = 3,
Down = 4,
Left = 5,
Right = 6,
Cross = 7,
Plus = 8,
Asterisk = 9,
}
Expand description
Markers, documentation copied from implot.h for convenience.
Variants§
None = -1
no marker
Circle = 0
a circle marker will be rendered at each point
Square = 1
a square maker will be rendered at each point
Diamond = 2
a diamond marker will be rendered at each point
Up = 3
an upward-pointing triangle marker will up rendered at each point
Down = 4
an downward-pointing triangle marker will up rendered at each point
Left = 5
an leftward-pointing triangle marker will up rendered at each point
Right = 6
an rightward-pointing triangle marker will up rendered at each point
Cross = 7
a cross marker will be rendered at each point (not filled)
Plus = 8
a plus marker will be rendered at each point (not filled)
Asterisk = 9
a asterisk marker will be rendered at each point (not filled)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Marker
impl RefUnwindSafe for Marker
impl Send for Marker
impl Sync for Marker
impl Unpin for Marker
impl UnwindSafe for Marker
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