Struct titanium::desktop::gui::libdruid::piet::image_crate::error::DecodingError
pub struct DecodingError { /* private fields */ }
Expand description
An error was encountered while decoding an image.
This is used as an opaque representation for the ImageError::Decoding
variant. See its
documentation for more information.
Implementations§
§impl DecodingError
impl DecodingError
pub fn new(
format: ImageFormatHint,
err: impl Into<Box<dyn Error + Send + Sync + 'static, Global>>
) -> DecodingError
pub fn new( format: ImageFormatHint, err: impl Into<Box<dyn Error + Send + Sync + 'static, Global>> ) -> DecodingError
Create a DecodingError
that stems from an arbitrary error of an underlying decoder.
pub fn from_format_hint(format: ImageFormatHint) -> DecodingError
pub fn from_format_hint(format: ImageFormatHint) -> DecodingError
Create a DecodingError
for an image format.
The error will not contain any further information but is very easy to create.
pub fn format_hint(&self) -> ImageFormatHint
pub fn format_hint(&self) -> ImageFormatHint
Returns the image format associated with this error.
Trait Implementations§
§impl Debug for DecodingError
impl Debug for DecodingError
§impl Display for DecodingError
impl Display for DecodingError
§impl Error for DecodingError
impl Error for DecodingError
§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 !RefUnwindSafe for DecodingError
impl Send for DecodingError
impl Sync for DecodingError
impl Unpin for DecodingError
impl !UnwindSafe for DecodingError
Blanket Implementations§
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> RoundFrom<T> for T
impl<T> RoundFrom<T> for T
§fn round_from(x: T) -> T
fn round_from(x: T) -> T
Performs the conversion.
§impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere U: RoundFrom<T>,
§fn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.