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§
source§impl Clone for MinMaxError
impl Clone for MinMaxError
source§fn clone(&self) -> MinMaxError
fn clone(&self) -> MinMaxError
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 MinMaxError
impl Debug for MinMaxError
source§impl Display for MinMaxError
impl Display for MinMaxError
source§impl Error for MinMaxError
impl Error for MinMaxError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<EmptyInput> for MinMaxError
impl From<EmptyInput> for MinMaxError
source§fn from(_: EmptyInput) -> MinMaxError
fn from(_: EmptyInput) -> MinMaxError
Converts to this type from the input type.
source§impl From<MinMaxError> for BinsBuildError
impl From<MinMaxError> for BinsBuildError
source§fn from(err: MinMaxError) -> BinsBuildError
fn from(err: MinMaxError) -> BinsBuildError
Converts to this type from the input type.
source§impl PartialEq for MinMaxError
impl PartialEq for MinMaxError
impl Eq for MinMaxError
impl StructuralPartialEq for MinMaxError
Auto Trait Implementations§
impl Freeze for MinMaxError
impl RefUnwindSafe for MinMaxError
impl Send for MinMaxError
impl Sync for MinMaxError
impl Unpin for MinMaxError
impl UnwindSafe for MinMaxError
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more