pub struct ScatterChart {
pub scatter_style: StringVal,
pub series: Vec<ScatterSeries>,
pub ax_ids: Vec<UintVal>,
}Expand description
Scatter chart definition.
Fields§
§scatter_style: StringVal§series: Vec<ScatterSeries>§ax_ids: Vec<UintVal>Trait Implementations§
Source§impl Clone for ScatterChart
impl Clone for ScatterChart
Source§fn clone(&self) -> ScatterChart
fn clone(&self) -> ScatterChart
Returns a duplicate of the value. Read more
1.0.0 · 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 ScatterChart
impl Debug for ScatterChart
Source§impl<'de> Deserialize<'de> for ScatterChart
impl<'de> Deserialize<'de> for ScatterChart
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 PartialEq for ScatterChart
impl PartialEq for ScatterChart
Source§impl Serialize for ScatterChart
impl Serialize for ScatterChart
impl StructuralPartialEq for ScatterChart
Auto Trait Implementations§
impl Freeze for ScatterChart
impl RefUnwindSafe for ScatterChart
impl Send for ScatterChart
impl Sync for ScatterChart
impl Unpin for ScatterChart
impl UnwindSafe for ScatterChart
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