pub enum ReductionFunc {
Min,
Max,
Median,
Mean,
}
Variants§
Trait Implementations§
Source§impl Clone for ReductionFunc
impl Clone for ReductionFunc
Source§fn clone(&self) -> ReductionFunc
fn clone(&self) -> ReductionFunc
Returns a copy 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 ReductionFunc
impl Debug for ReductionFunc
Source§impl PartialEq for ReductionFunc
impl PartialEq for ReductionFunc
Source§impl ValueEnum for ReductionFunc
impl ValueEnum for ReductionFunc
impl Copy for ReductionFunc
impl Eq for ReductionFunc
impl StructuralPartialEq for ReductionFunc
Auto Trait Implementations§
impl Freeze for ReductionFunc
impl RefUnwindSafe for ReductionFunc
impl Send for ReductionFunc
impl Sync for ReductionFunc
impl Unpin for ReductionFunc
impl UnwindSafe for ReductionFunc
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
Source§impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
Source§fn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
Source§fn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
Source§fn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.