[−][src]Struct image::error::UnsupportedError
The implementation for an operation was not provided.
See the variant Unsupported for more documentation.
Implementations
impl UnsupportedError[src]
pub fn from_format_and_kind(
format: ImageFormatHint,
kind: UnsupportedErrorKind
) -> Self[src]
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.
pub fn kind(&self) -> UnsupportedErrorKind[src]
Returns the corresponding UnsupportedErrorKind of the error.
pub fn format_hint(&self) -> ImageFormatHint[src]
Returns the image format associated with this error.
Trait Implementations
impl Debug for UnsupportedError[src]
impl Display for UnsupportedError[src]
impl Error for UnsupportedError[src]
pub fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]
pub fn backtrace(&self) -> Option<&Backtrace>[src]
pub fn description(&self) -> &str1.0.0[src]
pub fn cause(&self) -> Option<&dyn Error>1.0.0[src]
impl From<ImageFormatHint> for UnsupportedError[src]
fn from(hint: ImageFormatHint) -> Self[src]
Auto Trait Implementations
impl RefUnwindSafe for UnsupportedError[src]
impl Send for UnsupportedError[src]
impl Sync for UnsupportedError[src]
impl Unpin for UnsupportedError[src]
impl UnwindSafe for UnsupportedError[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Pointable for T[src]
pub const ALIGN: usize[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T[src]
pub unsafe fn drop(ptr: usize)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,