Struct ndarray_histogram::errors::EmptyInput
source · pub struct EmptyInput;
Expand description
An error that indicates that the input array was empty.
Trait Implementations§
source§impl Clone for EmptyInput
impl Clone for EmptyInput
source§fn clone(&self) -> EmptyInput
fn clone(&self) -> EmptyInput
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 EmptyInput
impl Debug for EmptyInput
source§impl Display for EmptyInput
impl Display for EmptyInput
source§impl Error for EmptyInput
impl Error for EmptyInput
1.30.0 · source§fn 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 · 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 BinsBuildError
impl From<EmptyInput> for BinsBuildError
source§fn from(_: EmptyInput) -> Self
fn from(_: EmptyInput) -> Self
Converts to this type from the input type.
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<EmptyInput> for MultiInputError
impl From<EmptyInput> for MultiInputError
source§fn from(_: EmptyInput) -> Self
fn from(_: EmptyInput) -> Self
Converts to this type from the input type.
source§impl From<EmptyInput> for QuantileError
impl From<EmptyInput> for QuantileError
source§fn from(_: EmptyInput) -> QuantileError
fn from(_: EmptyInput) -> QuantileError
Converts to this type from the input type.
source§impl PartialEq<EmptyInput> for EmptyInput
impl PartialEq<EmptyInput> for EmptyInput
source§fn eq(&self, other: &EmptyInput) -> bool
fn eq(&self, other: &EmptyInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for EmptyInput
impl StructuralEq for EmptyInput
impl StructuralPartialEq for EmptyInput
Auto Trait Implementations§
impl RefUnwindSafe for EmptyInput
impl Send for EmptyInput
impl Sync for EmptyInput
impl Unpin for EmptyInput
impl UnwindSafe for EmptyInput
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