Enum ndarray_stats::errors::MinMaxError
source · [−]pub enum MinMaxError {
EmptyInput,
UndefinedOrder,
}
Expand description
An error computing a minimum/maximum value.
Variants
EmptyInput
The input was empty.
UndefinedOrder
The ordering between a tested pair of values was undefined.
Trait Implementations
sourceimpl Clone for MinMaxError
impl Clone for MinMaxError
sourcefn clone(&self) -> MinMaxError
fn clone(&self) -> MinMaxError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MinMaxError
impl Debug for MinMaxError
sourceimpl Display for MinMaxError
impl Display for MinMaxError
sourceimpl Error for MinMaxError
impl Error for MinMaxError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<EmptyInput> for MinMaxError
impl From<EmptyInput> for MinMaxError
sourcefn from(_: EmptyInput) -> MinMaxError
fn from(_: EmptyInput) -> MinMaxError
Converts to this type from the input type.
sourceimpl From<MinMaxError> for BinsBuildError
impl From<MinMaxError> for BinsBuildError
sourcefn from(err: MinMaxError) -> BinsBuildError
fn from(err: MinMaxError) -> BinsBuildError
Converts to this type from the input type.
sourceimpl PartialEq<MinMaxError> for MinMaxError
impl PartialEq<MinMaxError> for MinMaxError
sourcefn eq(&self, other: &MinMaxError) -> bool
fn eq(&self, other: &MinMaxError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for MinMaxError
impl StructuralEq for MinMaxError
impl StructuralPartialEq for MinMaxError
Auto Trait Implementations
impl RefUnwindSafe for MinMaxError
impl Send for MinMaxError
impl Sync for MinMaxError
impl Unpin for MinMaxError
impl UnwindSafe for MinMaxError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.