pub enum DnsErr<TErr> {
Transport(TErr),
ResolveError(ResolveError),
MultiaddrNotSupported(Multiaddr),
TooManyLookups,
}
Expand description
The possible errors of a GenDnsConfig
wrapped transport.
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> Error for DnsErr<TErr>where
TErr: Error + 'static,
impl<TErr> Error for DnsErr<TErr>where TErr: Error + 'static,
source§fn source(&self) -> Option<&(dyn Error + 'static)>
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
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<TErr> !RefUnwindSafe for DnsErr<TErr>
impl<TErr> Send for DnsErr<TErr>where TErr: Send,
impl<TErr> Sync for DnsErr<TErr>where TErr: Sync,
impl<TErr> Unpin for DnsErr<TErr>where TErr: Unpin,
impl<TErr> !UnwindSafe for DnsErr<TErr>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more