Type Alias libp2p_dns::DnsErr

source ·
pub type DnsErr<TErr> = Error<TErr>;
👎Deprecated: Use Error instead.

Aliased Type§

enum DnsErr<TErr> {
    Transport(TErr),
    ResolveError(ResolveError),
    MultiaddrNotSupported(Multiaddr),
    TooManyLookups,
}

Variants§

§

Transport(TErr)

The underlying transport encountered an error.

§

ResolveError(ResolveError)

DNS resolution failed.

§

MultiaddrNotSupported(Multiaddr)

DNS resolution was successful, but the underlying transport refused the resolved address.

§

TooManyLookups

DNS resolution involved too many lookups.

DNS resolution on dialing performs up to 32 DNS lookups. If these are not sufficient to obtain a fully-resolved address, this error is returned and the DNS records for the domain(s) being dialed should be investigated.

Trait Implementations

source§

impl<TErr: Debug> Debug for Error<TErr>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<TErr> Display for Error<TErr>
where TErr: Display,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<TErr> Error for Error<TErr>
where TErr: Error + 'static,

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more