Enum data_url::forgiving_base64::DecodeError
source · pub enum DecodeError<E> {
InvalidBase64(InvalidBase64),
WriteError(E),
}
Variants§
InvalidBase64(InvalidBase64)
WriteError(E)
Trait Implementations§
source§impl<E: Debug> Debug for DecodeError<E>
impl<E: Debug> Debug for DecodeError<E>
source§impl From<DecodeError<Impossible>> for InvalidBase64
impl From<DecodeError<Impossible>> for InvalidBase64
source§fn from(e: DecodeError<Impossible>) -> Self
fn from(e: DecodeError<Impossible>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<E> RefUnwindSafe for DecodeError<E>where E: RefUnwindSafe,
impl<E> Send for DecodeError<E>where E: Send,
impl<E> Sync for DecodeError<E>where E: Sync,
impl<E> Unpin for DecodeError<E>where E: Unpin,
impl<E> UnwindSafe for DecodeError<E>where E: UnwindSafe,
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