pub struct ScatterPlotOptions {
pub title: Option<String>,
pub x_label: Option<String>,
pub y_label: Option<String>,
pub show_trend_line: bool,
}Expand description
Scatter plot options
Fields§
§title: Option<String>§x_label: Option<String>§y_label: Option<String>§show_trend_line: boolTrait Implementations§
Source§impl Clone for ScatterPlotOptions
impl Clone for ScatterPlotOptions
Source§fn clone(&self) -> ScatterPlotOptions
fn clone(&self) -> ScatterPlotOptions
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 ScatterPlotOptions
impl Debug for ScatterPlotOptions
Auto Trait Implementations§
impl Freeze for ScatterPlotOptions
impl RefUnwindSafe for ScatterPlotOptions
impl Send for ScatterPlotOptions
impl Sync for ScatterPlotOptions
impl Unpin for ScatterPlotOptions
impl UnsafeUnpin for ScatterPlotOptions
impl UnwindSafe for ScatterPlotOptions
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