pub struct PlotSpec {
pub kind: PlotKind,
pub r1: usize,
pub c1: usize,
pub r2: usize,
pub c2: usize,
pub title: Option<String>,
pub x_label: Option<String>,
pub y_label: Option<String>,
}Fields§
§kind: PlotKind§r1: usize§c1: usize§r2: usize§c2: usize§title: Option<String>§x_label: Option<String>§y_label: Option<String>Trait Implementations§
impl Eq for PlotSpec
impl StructuralPartialEq for PlotSpec
Auto Trait Implementations§
impl Freeze for PlotSpec
impl RefUnwindSafe for PlotSpec
impl Send for PlotSpec
impl Sync for PlotSpec
impl Unpin for PlotSpec
impl UnwindSafe for PlotSpec
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