pub struct Analysis<'a> {
pub title: Option<&'a str>,
pub date: Option<&'a str>,
pub plotname: &'a str,
pub flags: &'a str,
pub num_variables: usize,
pub num_points: usize,
pub variables: Vec<Variable<'a>>,
pub data: AnalysisData,
}
Expand description
Data stored by a single analysis.
Fields§
§title: Option<&'a str>
The title of the analysis.
date: Option<&'a str>
The date on which the analysis was performed.
plotname: &'a str
Plot name.
flags: &'a str
Flags.
num_variables: usize
The number of saved variables.
num_points: usize
The number of points saved.
variables: Vec<Variable<'a>>
The saved variable names.
data: AnalysisData
The saved variable values.
Trait Implementations§
source§impl<'de: 'a, 'a> Deserialize<'de> for Analysis<'a>
impl<'de: 'a, 'a> Deserialize<'de> for Analysis<'a>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'a> PartialEq for Analysis<'a>
impl<'a> PartialEq for Analysis<'a>
impl<'a> StructuralPartialEq for Analysis<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Analysis<'a>
impl<'a> Send for Analysis<'a>
impl<'a> Sync for Analysis<'a>
impl<'a> Unpin for Analysis<'a>
impl<'a> UnwindSafe for Analysis<'a>
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