pub enum Reduction {
None,
Mean,
Sum,
Other(i64),
}
Variants§
None
Do not reduce.
Mean
Mean of losses.
Sum
Sum of losses.
Other(i64)
Escape hatch in case new options become available.
Implementations§
Trait Implementations§
source§impl PartialEq<Reduction> for Reduction
impl PartialEq<Reduction> for Reduction
impl Copy for Reduction
impl Eq for Reduction
impl StructuralEq for Reduction
impl StructuralPartialEq for Reduction
Auto Trait Implementations§
impl RefUnwindSafe for Reduction
impl Send for Reduction
impl Sync for Reduction
impl Unpin for Reduction
impl UnwindSafe for Reduction
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