#[repr(u32)]pub enum StatisticType {
Undefined = 0,
Gradient = 1,
Maximum = 2,
Mean = 3,
Median = 4,
Minimum = 5,
Mode = 6,
Nonpeak = 7,
RootMeanSquare = 8,
StandardDeviation = 9,
Contrast = 10,
}
Variants§
Undefined = 0
Gradient = 1
Maximum = 2
Mean = 3
Median = 4
Minimum = 5
Mode = 6
Nonpeak = 7
RootMeanSquare = 8
StandardDeviation = 9
Contrast = 10
Trait Implementations§
Source§impl Clone for StatisticType
impl Clone for StatisticType
Source§fn clone(&self) -> StatisticType
fn clone(&self) -> StatisticType
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 StatisticType
impl Debug for StatisticType
Source§impl Hash for StatisticType
impl Hash for StatisticType
Source§impl PartialEq for StatisticType
impl PartialEq for StatisticType
impl Copy for StatisticType
impl Eq for StatisticType
impl StructuralPartialEq for StatisticType
Auto Trait Implementations§
impl Freeze for StatisticType
impl RefUnwindSafe for StatisticType
impl Send for StatisticType
impl Sync for StatisticType
impl Unpin for StatisticType
impl UnwindSafe for StatisticType
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