pub enum MarkerSymbol {
Circle,
Dash,
Diamond,
Dot,
None,
Picture,
Plus,
Square,
Star,
Triangle,
X,
Auto,
}Expand description
ST_MarkerStyle — the shape drawn at each data point of a line/scatter/ radar series.
Variants§
Circle
Dash
Diamond
Dot
None
Picture
A user-supplied picture — this crate has no supporting image reference for it (CT_Marker
itself carries none either; real picture markers are a legacy VML mechanism outside
DrawingML Charts), so this variant only preserves the token on round-trip.
Plus
Square
Star
Triangle
X
Auto
Trait Implementations§
Source§impl Clone for MarkerSymbol
impl Clone for MarkerSymbol
Source§fn clone(&self) -> MarkerSymbol
fn clone(&self) -> MarkerSymbol
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 MarkerSymbol
Source§impl Debug for MarkerSymbol
impl Debug for MarkerSymbol
impl Eq for MarkerSymbol
Source§impl PartialEq for MarkerSymbol
impl PartialEq for MarkerSymbol
impl StructuralPartialEq for MarkerSymbol
Auto Trait Implementations§
impl Freeze for MarkerSymbol
impl RefUnwindSafe for MarkerSymbol
impl Send for MarkerSymbol
impl Sync for MarkerSymbol
impl Unpin for MarkerSymbol
impl UnsafeUnpin for MarkerSymbol
impl UnwindSafe for MarkerSymbol
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.