enum InvalidBase64Details {
UnexpectedSymbol(u8),
AlphabetSymbolAfterPadding,
LoneAlphabetSymbol,
Padding,
}
Variants§
Trait Implementations§
source§impl Debug for InvalidBase64Details
impl Debug for InvalidBase64Details
source§impl<E> From<InvalidBase64Details> for DecodeError<E>
impl<E> From<InvalidBase64Details> for DecodeError<E>
source§fn from(e: InvalidBase64Details) -> Self
fn from(e: InvalidBase64Details) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InvalidBase64Details
impl RefUnwindSafe for InvalidBase64Details
impl Send for InvalidBase64Details
impl Sync for InvalidBase64Details
impl Unpin for InvalidBase64Details
impl UnwindSafe for InvalidBase64Details
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