Enum agnes::error::NetError [] [src]

pub enum NetError {
    UnsupportedUriScheme(Option<String>),
    Tls(Error),
    Http(Error),
    LocalFile,
}

Error that stems from some sort of network-related exception.

Variants

Unsupported URI scheme (http, ftp, ssh, etc.)

Secure layer error.

HTTP error.

Local file error

Trait Implementations

impl Debug for NetError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for NetError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for NetError
[src]

[src]

A short description of the error. Read more

[src]

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

impl From<NetError> for AgnesError
[src]

[src]

Performs the conversion.

impl From<Error> for NetError
[src]

[src]

Performs the conversion.

impl From<Error> for NetError
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for NetError

impl Sync for NetError