Enum anni_common::decode::DecodeError
source · pub enum DecodeError {
IOError(Error),
FromUtf8Error(FromUtf8Error),
InvalidTokenError {
expected: Vec<u8>,
got: Vec<u8>,
},
}Variants§
Trait Implementations§
source§impl Debug for DecodeError
impl Debug for DecodeError
source§impl Display for DecodeError
impl Display for DecodeError
source§impl Error for DecodeError
impl Error for DecodeError
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<Error> for DecodeError
impl From<Error> for DecodeError
source§impl From<FromUtf8Error> for DecodeError
impl From<FromUtf8Error> for DecodeError
source§fn from(source: FromUtf8Error) -> Self
fn from(source: FromUtf8Error) -> Self
Converts to this type from the input type.