pub struct AggregateRunScore {
pub run_id: String,
pub label: String,
pub category: String,
pub mean_rank: f32,
pub mean_cumulative_roi_mae: f32,
pub mean_non_roi_mae: f32,
pub mean_false_positive_response_rate: f32,
pub benefit_scenarios_won: usize,
}Fields§
§run_id: String§label: String§category: String§mean_rank: f32§mean_cumulative_roi_mae: f32§mean_non_roi_mae: f32§mean_false_positive_response_rate: f32§benefit_scenarios_won: usizeTrait Implementations§
Source§impl Clone for AggregateRunScore
impl Clone for AggregateRunScore
Source§fn clone(&self) -> AggregateRunScore
fn clone(&self) -> AggregateRunScore
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 moreSource§impl Debug for AggregateRunScore
impl Debug for AggregateRunScore
Auto Trait Implementations§
impl Freeze for AggregateRunScore
impl RefUnwindSafe for AggregateRunScore
impl Send for AggregateRunScore
impl Sync for AggregateRunScore
impl Unpin for AggregateRunScore
impl UnsafeUnpin for AggregateRunScore
impl UnwindSafe for AggregateRunScore
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