Enum png::EncodingError
source · pub enum EncodingError {
IoError(Error),
Format(Cow<'static, str>),
}
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 description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
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.