#[repr(u32)]pub enum MarkerType {
NONE = 0,
POINT = 1,
CIRCLE = 2,
SQUARE = 3,
TRIANGLE = 4,
CROSS = 5,
PLUS = 6,
STAR = 7,
}Expand description
Plotting markers
Variants§
NONE = 0
No marker
POINT = 1
Pointer marker
CIRCLE = 2
Hollow circle marker
SQUARE = 3
Hollow Square marker
TRIANGLE = 4
Hollow Triangle marker
CROSS = 5
Cross-hair marker
PLUS = 6
Plus symbol marker
STAR = 7
Start symbol marker
Trait Implementations§
Source§impl Clone for MarkerType
impl Clone for MarkerType
Source§fn clone(&self) -> MarkerType
fn clone(&self) -> MarkerType
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 MarkerType
impl Debug for MarkerType
Source§impl PartialEq for MarkerType
impl PartialEq for MarkerType
impl Copy for MarkerType
impl StructuralPartialEq for MarkerType
Auto Trait Implementations§
impl Freeze for MarkerType
impl RefUnwindSafe for MarkerType
impl Send for MarkerType
impl Sync for MarkerType
impl Unpin for MarkerType
impl UnwindSafe for MarkerType
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