pub struct PrimaryEvaluationRow {
pub name: String,
pub result: ScenarioResult,
pub csv_name: String,
}Expand description
Structured result for one primary evaluation scenario.
Fields§
§name: StringUser-facing scenario label.
result: ScenarioResultFull scenario result.
csv_name: StringCSV filename written for this scenario.
Trait Implementations§
Source§impl Clone for PrimaryEvaluationRow
impl Clone for PrimaryEvaluationRow
Source§fn clone(&self) -> PrimaryEvaluationRow
fn clone(&self) -> PrimaryEvaluationRow
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PrimaryEvaluationRow
impl RefUnwindSafe for PrimaryEvaluationRow
impl Send for PrimaryEvaluationRow
impl Sync for PrimaryEvaluationRow
impl Unpin for PrimaryEvaluationRow
impl UnsafeUnpin for PrimaryEvaluationRow
impl UnwindSafe for PrimaryEvaluationRow
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