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

pub enum DisplayError {
    InvalidLineLength,
}

Errors that can occur initializing a Base64Display.

Variants

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]

Formats the value using the given formatter. Read more

impl PartialEq for DisplayError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations