pub enum ReductionFlavor {
Sum,
Mean,
CustomScale(f64),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ReductionFlavor
impl Clone for ReductionFlavor
Source§fn clone(&self) -> ReductionFlavor
fn clone(&self) -> ReductionFlavor
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 ReductionFlavor
impl Debug for ReductionFlavor
Source§impl<'de> Deserialize<'de> for ReductionFlavor
impl<'de> Deserialize<'de> for ReductionFlavor
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ReductionFlavor
impl PartialEq for ReductionFlavor
Source§impl Serialize for ReductionFlavor
impl Serialize for ReductionFlavor
impl Copy for ReductionFlavor
impl StructuralPartialEq for ReductionFlavor
Auto Trait Implementations§
impl Freeze for ReductionFlavor
impl RefUnwindSafe for ReductionFlavor
impl Send for ReductionFlavor
impl Sync for ReductionFlavor
impl Unpin for ReductionFlavor
impl UnwindSafe for ReductionFlavor
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