Enum image::error::ParameterErrorKind [−][src]
pub enum ParameterErrorKind { DimensionMismatch, FailedAlready, Generic(String), NoMoreData, // some variants omitted }
Expand description
Details how a parameter is malformed.
Variants
The dimensions passed are wrong.
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).
The end of the image has been reached.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ParameterErrorKind
impl Send for ParameterErrorKind
impl Sync for ParameterErrorKind
impl Unpin for ParameterErrorKind
impl UnwindSafe for ParameterErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more