pub enum ScatterStyle {
None,
Line,
LineMarker,
Marker,
Smooth,
SmoothMarker,
}Expand description
ST_ScatterStyle — required by the schema (minOccurs="1", default "marker"), so modeled as
a plain, non-Option field with #[default] from the start, avoiding the kind of
round-tripping hazard a schema-required element modeled as Option would create.
Variants§
Trait Implementations§
Source§impl Clone for ScatterStyle
impl Clone for ScatterStyle
Source§fn clone(&self) -> ScatterStyle
fn clone(&self) -> ScatterStyle
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 ScatterStyle
Source§impl Debug for ScatterStyle
impl Debug for ScatterStyle
Source§impl Default for ScatterStyle
impl Default for ScatterStyle
Source§fn default() -> ScatterStyle
fn default() -> ScatterStyle
Returns the “default value” for a type. Read more
impl Eq for ScatterStyle
Source§impl PartialEq for ScatterStyle
impl PartialEq for ScatterStyle
impl StructuralPartialEq for ScatterStyle
Auto Trait Implementations§
impl Freeze for ScatterStyle
impl RefUnwindSafe for ScatterStyle
impl Send for ScatterStyle
impl Sync for ScatterStyle
impl Unpin for ScatterStyle
impl UnsafeUnpin for ScatterStyle
impl UnwindSafe for ScatterStyle
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.