Enum base64::Base64Error
[−]
[src]
pub enum Base64Error {
Utf8(FromUtf8Error),
InvalidByte(usize, u8),
InvalidLength,
}Variants
Utf8(FromUtf8Error)InvalidByte(usize, u8)InvalidLengthTrait Implementations
impl Debug for Base64Error[src]
impl Display for Base64Error[src]
impl Error for Base64Error[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl From<FromUtf8Error> for Base64Error[src]
fn from(err: FromUtf8Error) -> Base64Error
Performs the conversion.