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§
source§impl 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§
source§impl Debug for UnsupportedError
 
impl Debug for UnsupportedError
source§impl Display for UnsupportedError
 
impl Display for UnsupportedError
source§impl Error for UnsupportedError
 
impl Error for UnsupportedError
1.30.0 · 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()
source§impl From<ImageFormatHint> for UnsupportedError
 
impl From<ImageFormatHint> for UnsupportedError
source§fn from(hint: ImageFormatHint) -> Self
 
fn from(hint: ImageFormatHint) -> Self
Converts to this type from the input type.