Enum libp2p_dns::Error
source · pub enum Error<TErr> {
Transport(TErr),
ResolveError(ResolveError),
MultiaddrNotSupported(Multiaddr),
TooManyLookups,
}
Expand description
The possible errors of a Transport
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 Error<TErr>where
TErr: Error + 'static,
impl<TErr> Error for Error<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 Error<TErr>
impl<TErr> Send for Error<TErr>where TErr: Send,
impl<TErr> Sync for Error<TErr>where TErr: Sync,
impl<TErr> Unpin for Error<TErr>where TErr: Unpin,
impl<TErr> !UnwindSafe for Error<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