pub enum ZScoreError {
EmptyInput,
ZeroStandardDeviation,
}Variants§
Trait Implementations§
Source§impl Clone for ZScoreError
impl Clone for ZScoreError
Source§fn clone(&self) -> ZScoreError
fn clone(&self) -> ZScoreError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ZScoreError
impl Debug for ZScoreError
Source§impl PartialEq for ZScoreError
impl PartialEq for ZScoreError
Source§fn eq(&self, other: &ZScoreError) -> bool
fn eq(&self, other: &ZScoreError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ZScoreError
impl StructuralPartialEq for ZScoreError
Auto Trait Implementations§
impl Freeze for ZScoreError
impl RefUnwindSafe for ZScoreError
impl Send for ZScoreError
impl Sync for ZScoreError
impl Unpin for ZScoreError
impl UnsafeUnpin for ZScoreError
impl UnwindSafe for ZScoreError
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