pub struct BlueGreenPredictionTestReport {
pub compared_predictions: usize,
pub max_score_delta: f32,
}Expand description
Data type for blue/green prediction test report.
Fields§
§compared_predictions: usizeNumber of predictions compared.
max_score_delta: f32Maximum observed absolute score delta.
Trait Implementations§
Source§impl Clone for BlueGreenPredictionTestReport
impl Clone for BlueGreenPredictionTestReport
Source§fn clone(&self) -> BlueGreenPredictionTestReport
fn clone(&self) -> BlueGreenPredictionTestReport
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 PartialEq for BlueGreenPredictionTestReport
impl PartialEq for BlueGreenPredictionTestReport
Source§fn eq(&self, other: &BlueGreenPredictionTestReport) -> bool
fn eq(&self, other: &BlueGreenPredictionTestReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BlueGreenPredictionTestReport
Auto Trait Implementations§
impl Freeze for BlueGreenPredictionTestReport
impl RefUnwindSafe for BlueGreenPredictionTestReport
impl Send for BlueGreenPredictionTestReport
impl Sync for BlueGreenPredictionTestReport
impl Unpin for BlueGreenPredictionTestReport
impl UnsafeUnpin for BlueGreenPredictionTestReport
impl UnwindSafe for BlueGreenPredictionTestReport
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