pub struct Plot {
pub title: String,
pub date: String,
pub plotname: String,
pub flags: Flags,
pub no_of_variables: usize,
pub no_of_points: usize,
pub data: Vec<VarData>,
}
Fields§
§title: String
§date: String
§plotname: String
§flags: Flags
§no_of_variables: usize
§no_of_points: usize
§data: Vec<VarData>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Plot
impl RefUnwindSafe for Plot
impl Send for Plot
impl Sync for Plot
impl Unpin for Plot
impl UnwindSafe for Plot
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