Struct image::error::UnsupportedError  
source · [−]pub struct UnsupportedError { /* private fields */ }Expand description
The implementation for an operation was not provided.
See the variant Unsupported for more documentation.
Implementations
sourceimpl UnsupportedError
 
impl UnsupportedError
sourcepub fn from_format_and_kind(
    format: ImageFormatHint, 
    kind: UnsupportedErrorKind
) -> Self
 
pub fn from_format_and_kind(
    format: ImageFormatHint, 
    kind: UnsupportedErrorKind
) -> Self
Create an UnsupportedError for an image with details on the unsupported feature.
If the operation was not connected to a particular image format then the hint may be
Unknown.
sourcepub fn kind(&self) -> UnsupportedErrorKind
 
pub fn kind(&self) -> UnsupportedErrorKind
Returns the corresponding UnsupportedErrorKind of the error.
sourcepub fn format_hint(&self) -> ImageFormatHint
 
pub fn format_hint(&self) -> ImageFormatHint
Returns the image format associated with this error.
Trait Implementations
sourceimpl Debug for UnsupportedError
 
impl Debug for UnsupportedError
sourceimpl Display for UnsupportedError
 
impl Display for UnsupportedError
sourceimpl Error for UnsupportedError
 
impl Error for UnsupportedError
1.30.0 · 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()
sourceimpl From<ImageFormatHint> for UnsupportedError
 
impl From<ImageFormatHint> for UnsupportedError
sourcefn from(hint: ImageFormatHint) -> Self
 
fn from(hint: ImageFormatHint) -> Self
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for UnsupportedError
impl Send for UnsupportedError
impl Sync for UnsupportedError
impl Unpin for UnsupportedError
impl UnwindSafe for UnsupportedError
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