[][src]Enum base64::display::DisplayError

[]
pub enum DisplayError {
    InvalidLineLength,
}
[]

Errors that can occur initializing a Base64Display.

Variants

InvalidLineLength
[]

If wrapping is configured, the line length must be a multiple of 4, and must not be absurdly large (currently capped at 1024, subject to change).

Trait Implementations

impl Debug for DisplayError[src][+]

impl PartialEq<DisplayError> for DisplayError[src][+]

impl StructuralPartialEq for DisplayError[src]

Auto Trait Implementations

impl RefUnwindSafe for DisplayError

impl Send for DisplayError

impl Sync for DisplayError

impl Unpin for DisplayError

impl UnwindSafe for DisplayError

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src][+]

impl<T> Borrow<T> for T where
    T: ?Sized
[src][+]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src][+]

impl<T> From<T> for T[src][+]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src][+]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src][+]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src][+]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.