Enum base64::alphabet::ParseAlphabetError
source · pub enum ParseAlphabetError {
InvalidLength,
DuplicatedByte(u8),
UnprintableByte(u8),
ReservedByte(u8),
}
Expand description
Possible errors when constructing an Alphabet from a str
.
Variants§
InvalidLength
Alphabets must be 64 ASCII bytes
DuplicatedByte(u8)
All bytes must be unique
UnprintableByte(u8)
All bytes must be printable (in the range [32, 126]
).
ReservedByte(u8)
=
cannot be used
Trait Implementations§
source§impl Debug for ParseAlphabetError
impl Debug for ParseAlphabetError
source§impl Display for ParseAlphabetError
impl Display for ParseAlphabetError
source§impl Error for ParseAlphabetError
impl Error for ParseAlphabetError
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 PartialEq<ParseAlphabetError> for ParseAlphabetError
impl PartialEq<ParseAlphabetError> for ParseAlphabetError
source§fn eq(&self, other: &ParseAlphabetError) -> bool
fn eq(&self, other: &ParseAlphabetError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.