Struct trust_dns_resolver::error::ResolveError[][src]

pub struct ResolveError { /* fields omitted */ }

The error type for errors that get returned in the crate

Methods

impl ResolveError
[src]

Get the kind of the error

Trait Implementations

impl Debug for ResolveError
[src]

Formats the value using the given formatter. Read more

impl Clone for ResolveError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Fail for ResolveError
[src]

Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more

Returns a reference to the Backtrace carried by this failure, if it carries one. Read more

Provides context for this failure. Read more

Wraps this failure in a compatibility wrapper that implements std::error::Error. Read more

impl Display for ResolveError
[src]

Formats the value using the given formatter. Read more

impl From<ResolveErrorKind> for ResolveError
[src]

Performs the conversion.

impl From<Context<ResolveErrorKind>> for ResolveError
[src]

Performs the conversion.

impl From<&'static str> for ResolveError
[src]

Performs the conversion.

impl From<String> for ResolveError
[src]

Performs the conversion.

impl From<Error> for ResolveError
[src]

Performs the conversion.

impl From<ProtoError> for ResolveError
[src]

Performs the conversion.

impl From<ResolveError> for Error
[src]

Performs the conversion.

Auto Trait Implementations