pub enum SeriesMarker {
Circle,
Square,
Triangle,
Diamond,
Cross,
Plus,
}Expand description
The marker glyph drawn at a line chart’s data points, and next to a series in a legend. Shape, not colour — that is the whole point.
Variants§
Trait Implementations§
Source§impl Clone for SeriesMarker
impl Clone for SeriesMarker
Source§fn clone(&self) -> SeriesMarker
fn clone(&self) -> SeriesMarker
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SeriesMarker
Source§impl Debug for SeriesMarker
impl Debug for SeriesMarker
impl Eq for SeriesMarker
Source§impl Hash for SeriesMarker
impl Hash for SeriesMarker
Source§impl PartialEq for SeriesMarker
impl PartialEq for SeriesMarker
Source§fn eq(&self, other: &SeriesMarker) -> bool
fn eq(&self, other: &SeriesMarker) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SeriesMarker
Auto Trait Implementations§
impl Freeze for SeriesMarker
impl RefUnwindSafe for SeriesMarker
impl Send for SeriesMarker
impl Sync for SeriesMarker
impl Unpin for SeriesMarker
impl UnsafeUnpin for SeriesMarker
impl UnwindSafe for SeriesMarker
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