pub enum ScoreAggregation {
Mean,
Max,
Min,
Weighted(Vec<f32>),
Median,
}Expand description
Score aggregation methods
Variants§
Mean
Average all scores
Max
Maximum score
Min
Minimum score
Weighted(Vec<f32>)
Weighted average
Median
Median score
Trait Implementations§
Source§impl Clone for ScoreAggregation
impl Clone for ScoreAggregation
Source§fn clone(&self) -> ScoreAggregation
fn clone(&self) -> ScoreAggregation
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 ScoreAggregation
impl Debug for ScoreAggregation
Source§impl PartialEq for ScoreAggregation
impl PartialEq for ScoreAggregation
impl StructuralPartialEq for ScoreAggregation
Auto Trait Implementations§
impl Freeze for ScoreAggregation
impl RefUnwindSafe for ScoreAggregation
impl Send for ScoreAggregation
impl Sync for ScoreAggregation
impl Unpin for ScoreAggregation
impl UnwindSafe for ScoreAggregation
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