Struct titanium::desktop::gui::libdruid::piet::image_crate::error::EncodingError
pub struct EncodingError { /* private fields */ }
Expand description
An error was encountered while encoding an image.
This is used as an opaque representation for the ImageError::Encoding
variant. See its
documentation for more information.
Implementations§
§impl EncodingError
impl EncodingError
pub fn new(
format: ImageFormatHint,
err: impl Into<Box<dyn Error + Send + Sync + 'static, Global>>
) -> EncodingError
pub fn new( format: ImageFormatHint, err: impl Into<Box<dyn Error + Send + Sync + 'static, Global>> ) -> EncodingError
Create an EncodingError
that stems from an arbitrary error of an underlying encoder.
pub fn from_format_hint(format: ImageFormatHint) -> EncodingError
pub fn from_format_hint(format: ImageFormatHint) -> EncodingError
Create an EncodingError
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
Return the image format associated with this error.
Trait Implementations§
§impl Debug for EncodingError
impl Debug for EncodingError
§impl Display for EncodingError
impl Display for EncodingError
§impl Error for EncodingError
impl Error for EncodingError
§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 EncodingError
impl Send for EncodingError
impl Sync for EncodingError
impl Unpin for EncodingError
impl !UnwindSafe for EncodingError
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.