Enum webfinger::WebfingerError[][src]

pub enum WebfingerError {
    HttpError,
    ParseError,
    JsonError,
}

An error that occured while fetching a WebFinger resource.

Variants

The error came from the HTTP client.

The requested resource couldn't be parsed, and thus couldn't be fetched

The received JSON couldn't be parsed into a valid Webfinger struct.

Trait Implementations

impl Debug for WebfingerError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for WebfingerError
[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