Enum image::error::ParameterErrorKind
source · #[non_exhaustive]pub enum ParameterErrorKind {
DimensionMismatch,
FailedAlready,
Generic(String),
NoMoreData,
}
Expand description
Details how a parameter is malformed.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DimensionMismatch
The dimensions passed are wrong.
FailedAlready
Repeated an operation for which error that could not be cloned was emitted already.
Generic(String)
A string describing the parameter. This is discouraged and is likely to get deprecated (but not removed).
NoMoreData
The end of the image has been reached.
Trait Implementations§
source§impl Clone for ParameterErrorKind
impl Clone for ParameterErrorKind
source§fn clone(&self) -> ParameterErrorKind
fn clone(&self) -> ParameterErrorKind
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 ParameterErrorKind
impl Debug for ParameterErrorKind
source§impl Hash for ParameterErrorKind
impl Hash for ParameterErrorKind
source§impl PartialEq for ParameterErrorKind
impl PartialEq for ParameterErrorKind
source§fn eq(&self, other: &ParameterErrorKind) -> bool
fn eq(&self, other: &ParameterErrorKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ParameterErrorKind
Auto Trait Implementations§
impl Freeze for ParameterErrorKind
impl RefUnwindSafe for ParameterErrorKind
impl Send for ParameterErrorKind
impl Sync for ParameterErrorKind
impl Unpin for ParameterErrorKind
impl UnwindSafe for ParameterErrorKind
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)