pub struct EvalReport {
pub metrics: Vec<EvalMetric>,
}Expand description
Bundle of evaluation metrics.
Fields§
§metrics: Vec<EvalMetric>Metrics.
Implementations§
Trait Implementations§
Source§impl Clone for EvalReport
impl Clone for EvalReport
Source§fn clone(&self) -> EvalReport
fn clone(&self) -> EvalReport
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 EvalReport
impl Debug for EvalReport
Source§impl Default for EvalReport
impl Default for EvalReport
Source§fn default() -> EvalReport
fn default() -> EvalReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for EvalReport
impl PartialEq for EvalReport
Source§fn eq(&self, other: &EvalReport) -> bool
fn eq(&self, other: &EvalReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EvalReport
Auto Trait Implementations§
impl Freeze for EvalReport
impl RefUnwindSafe for EvalReport
impl Send for EvalReport
impl Sync for EvalReport
impl Unpin for EvalReport
impl UnsafeUnpin for EvalReport
impl UnwindSafe for EvalReport
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