Struct libp2prs_dns::DnsConfig[][src]

pub struct DnsConfig<T> { /* fields omitted */ }

Represents the configuration for a DNS transport capability of libp2p.

This struct implements the Transport trait and holds an underlying transport. Any call to dial with a multiaddr that contains /dns/, /dns4/, or /dns6/ will be first be resolved, then passed to the underlying transport.

Listening is unaffected.

Implementations

impl<T> DnsConfig<T>[src]

pub fn new(inner: T) -> Self[src]

Creates a new configuration object for DNS.

Trait Implementations

impl<T: Clone> Clone for DnsConfig<T>[src]

impl<T> Debug for DnsConfig<T> where
    T: Debug
[src]

impl<T> Transport for DnsConfig<T> where
    T: Transport + Clone + 'static, 
[src]

type Output = T::Output

The result of a connection setup process, including protocol upgrades. Read more

Auto Trait Implementations

impl<T> RefUnwindSafe for DnsConfig<T> where
    T: RefUnwindSafe

impl<T> Send for DnsConfig<T> where
    T: Send

impl<T> Sync for DnsConfig<T> where
    T: Sync

impl<T> Unpin for DnsConfig<T> where
    T: Unpin

impl<T> UnwindSafe for DnsConfig<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,