#[repr(C)]pub enum ChartStyle {
Bar = 0,
Line = 1,
}Expand description
How a Chart draws its values.
Variants§
Trait Implementations§
Source§impl Clone for ChartStyle
impl Clone for ChartStyle
Source§fn clone(&self) -> ChartStyle
fn clone(&self) -> ChartStyle
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 moreSource§impl Debug for ChartStyle
impl Debug for ChartStyle
Source§impl<'de> Deserialize<'de> for ChartStyle
impl<'de> Deserialize<'de> for ChartStyle
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'ʄ> Facet<'ʄ> for ChartStyle
impl<'ʄ> Facet<'ʄ> for ChartStyle
Source§impl PartialEq for ChartStyle
impl PartialEq for ChartStyle
Source§fn eq(&self, other: &ChartStyle) -> bool
fn eq(&self, other: &ChartStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChartStyle
impl Serialize for ChartStyle
impl Copy for ChartStyle
impl Eq for ChartStyle
impl StructuralPartialEq for ChartStyle
Auto Trait Implementations§
impl Freeze for ChartStyle
impl RefUnwindSafe for ChartStyle
impl Send for ChartStyle
impl Sync for ChartStyle
impl Unpin for ChartStyle
impl UnsafeUnpin for ChartStyle
impl UnwindSafe for ChartStyle
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