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
sourceimpl 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
sourceimpl Debug for ParameterError
impl Debug for ParameterError
sourceimpl Display for ParameterError
impl Display for ParameterError
sourceimpl Error for ParameterError
impl Error for ParameterError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl !RefUnwindSafe for ParameterError
impl Send for ParameterError
impl Sync for ParameterError
impl Unpin for ParameterError
impl !UnwindSafe for ParameterError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more