Enum png::EncodingError
source · pub enum EncodingError {
IoError(Error),
Format(FormatError),
Parameter(ParameterError),
LimitsExceeded,
}
Variants§
Trait Implementations§
source§impl Debug for EncodingError
impl Debug for EncodingError
source§impl Display for EncodingError
impl Display for EncodingError
source§impl Error for EncodingError
impl Error for EncodingError
source§fn cause(&self) -> Option<&(dyn Error + 'static)>
fn cause(&self) -> Option<&(dyn Error + 'static)>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
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<EncodingError> for Error
impl From<EncodingError> for Error
source§fn from(err: EncodingError) -> Error
fn from(err: EncodingError) -> Error
Converts to this type from the input type.
source§impl From<Error> for EncodingError
impl From<Error> for EncodingError
source§fn from(err: Error) -> EncodingError
fn from(err: Error) -> EncodingError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EncodingError
impl !RefUnwindSafe for EncodingError
impl Send for EncodingError
impl Sync for EncodingError
impl Unpin for EncodingError
impl !UnwindSafe for EncodingError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more