Struct image::error::ParameterError
source · pub struct ParameterError { /* private fields */ }
Expand description
An error was encountered in inputs arguments.
This is used as an opaque representation for the ImageError::Parameter
variant. See its
documentation for more information.
Implementations§
source§impl ParameterError
impl ParameterError
sourcepub fn from_kind(kind: ParameterErrorKind) -> Self
pub fn from_kind(kind: ParameterErrorKind) -> Self
Construct a ParameterError
directly from a corresponding kind.
sourcepub fn kind(&self) -> ParameterErrorKind
pub fn kind(&self) -> ParameterErrorKind
Returns the corresponding ParameterErrorKind
of the error.
Trait Implementations§
source§impl Debug for ParameterError
impl Debug for ParameterError
source§impl Display for ParameterError
impl Display for ParameterError
source§impl Error for ParameterError
impl Error for ParameterError
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()
Auto Trait Implementations§
impl Freeze for ParameterError
impl !RefUnwindSafe for ParameterError
impl Send for ParameterError
impl Sync for ParameterError
impl Unpin for ParameterError
impl !UnwindSafe for ParameterError
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