pub enum Markers {
Show 22 variants
Point,
Pixel,
Circle,
Triangle_Down,
Triangle_Up,
Triangle_Left,
Triangle_Right,
Tri_Down,
Tri_Up,
Tri_Left,
Tri_Right,
Square,
Pentagon,
Star,
Hexagon1,
Hexagon2,
Plus,
X,
Diamond,
Thin_Diamond,
VLine,
HLine,
}
Variants§
Point
Pixel
Circle
Triangle_Down
Triangle_Up
Triangle_Left
Triangle_Right
Tri_Down
Tri_Up
Tri_Left
Tri_Right
Square
Pentagon
Star
Hexagon1
Hexagon2
Plus
X
Diamond
Thin_Diamond
VLine
HLine
Implementations§
Auto Trait Implementations§
impl Freeze for Markers
impl RefUnwindSafe for Markers
impl Send for Markers
impl Sync for Markers
impl Unpin for Markers
impl UnwindSafe for Markers
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more