Enum actix_net::connector::ConnectorError[][src]

pub enum ConnectorError {
    Resolver(ResolverError),
    NoRecords,
    IoError(Error),
}

Variants

Failed to resolve the hostname

Not dns records

Connection io error

Trait Implementations

impl Debug for ConnectorError
[src]

Formats the value using the given formatter. Read more

impl From<ResolverError> for ConnectorError
[src]

Performs the conversion.

Auto Trait Implementations