Enum openalias::Error [] [src]

pub enum Error {
    Oa1Parse(ParseError),
    Io(IoError),
    Utf8Parse(FromUtf8Error),
    AddressParse,
}

Some error emerging from the library.

Variants

Error parsing an OA1 record.

Error with conversing with DNS server.

TXT record not UTF8 (ASCII).

Non-FQDN address passed to address*().

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl From<ParseError> for Error
[src]

[src]

Performs the conversion.

impl From<IoError> for Error
[src]

[src]

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

[src]

Performs the conversion.

impl StdError for Error
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more