Enum fast_chemail::ParseError [] [src]

pub enum ParseError {
    NoLocalPart,
    NoDomainPart,
    NoSignAt,
    TooAt,
    LocalTooLong,
    DomainTooLong,
    LabelTooLong,
    LocalStartPeriod,
    LocalEndPeriod,
    DomainStartPeriod,
    DomainEndPeriod,
    ConsecutivePeriod,
    NoPeriodDomain,
    Ascii(AsciiError),
    WrongCharLocal(char),
    WrongCharDomain(char),
    WrongStartLabel(char),
    WrongEndLabel(char),
}

Variants

Trait Implementations

impl Debug for ParseError
[src]

Formats the value using the given formatter.

impl PartialEq for ParseError
[src]

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

This method tests for !=.

impl Eq for ParseError
[src]

impl From<AsciiError> for ParseError
[src]

Performs the conversion.

impl Error for ParseError
[src]

The lower-level cause of this error, if any. Read more

A short description of the error. Read more

impl Display for ParseError
[src]

Formats the value using the given formatter. Read more