pub struct DotPlotConfig {
pub x_min: Option<f64>,
pub x_max: Option<f64>,
pub y_min: Option<f64>,
pub y_max: Option<f64>,
pub x_label: Option<String>,
pub y_label: Option<String>,
pub show_legend: bool,
pub dot_size: f64,
}Expand description
Configuration for dot plot rendering.
Fields§
§x_min: Option<f64>§x_max: Option<f64>§y_min: Option<f64>§y_max: Option<f64>§x_label: Option<String>§y_label: Option<String>§show_legend: bool§dot_size: f64Auto Trait Implementations§
impl Freeze for DotPlotConfig
impl RefUnwindSafe for DotPlotConfig
impl Send for DotPlotConfig
impl Sync for DotPlotConfig
impl Unpin for DotPlotConfig
impl UnsafeUnpin for DotPlotConfig
impl UnwindSafe for DotPlotConfig
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