pub struct SuiteReport {
pub suite_id: String,
pub suite_name: String,
pub task_reports: Vec<TaskReport>,
pub aggregate: EvalMetric,
pub capability_metrics: EvalMetric,
pub regression_metrics: EvalMetric,
}Fields§
§suite_id: String§suite_name: String§task_reports: Vec<TaskReport>§aggregate: EvalMetric§capability_metrics: EvalMetric§regression_metrics: EvalMetricTrait Implementations§
Source§impl Clone for SuiteReport
impl Clone for SuiteReport
Source§fn clone(&self) -> SuiteReport
fn clone(&self) -> SuiteReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SuiteReport
impl Debug for SuiteReport
Auto Trait Implementations§
impl Freeze for SuiteReport
impl RefUnwindSafe for SuiteReport
impl Send for SuiteReport
impl Sync for SuiteReport
impl Unpin for SuiteReport
impl UnsafeUnpin for SuiteReport
impl UnwindSafe for SuiteReport
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