pub struct ScatterPoint {
pub x: f64,
pub y: f64,
pub size: Option<f64>,
pub color: Option<Color>,
pub label: Option<String>,
}Expand description
Scatter plot data point
Fields§
§x: f64§y: f64§size: Option<f64>§color: Option<Color>§label: Option<String>Trait Implementations§
Source§impl Clone for ScatterPoint
impl Clone for ScatterPoint
Source§fn clone(&self) -> ScatterPoint
fn clone(&self) -> ScatterPoint
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 moreAuto Trait Implementations§
impl Freeze for ScatterPoint
impl RefUnwindSafe for ScatterPoint
impl Send for ScatterPoint
impl Sync for ScatterPoint
impl Unpin for ScatterPoint
impl UnwindSafe for ScatterPoint
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