pub enum DispersionMethod {
StandardDeviation,
MedianAbsoluteDeviation,
}
Variants§
Trait Implementations§
Source§impl Clone for DispersionMethod
impl Clone for DispersionMethod
Source§fn clone(&self) -> DispersionMethod
fn clone(&self) -> DispersionMethod
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 DispersionMethod
impl Debug for DispersionMethod
Source§impl From<DispersionMethod> for DispersionMethod
impl From<DispersionMethod> for DispersionMethod
Source§fn from(method: DispersionMethod) -> Self
fn from(method: DispersionMethod) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DispersionMethod
impl PartialEq for DispersionMethod
impl Copy for DispersionMethod
impl StructuralPartialEq for DispersionMethod
Auto Trait Implementations§
impl Freeze for DispersionMethod
impl RefUnwindSafe for DispersionMethod
impl Send for DispersionMethod
impl Sync for DispersionMethod
impl Unpin for DispersionMethod
impl UnwindSafe for DispersionMethod
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