[][src]Struct libp2p::dns::DnsConfig

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 /dns4/ or /dns6/ will be first be resolved, then passed to the underlying transport.

Listening is unaffected.

Methods

impl<T> DnsConfig<T>[src]

pub fn new(inner: T) -> Result<DnsConfig<T>, Error>[src]

Creates a new configuration object for DNS.

pub fn with_resolve_threads(
    inner: T,
    num_threads: usize
) -> Result<DnsConfig<T>, Error>
[src]

Same as new, but allows specifying a number of threads for the resolving.

Trait Implementations

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

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

impl<T> Transport for DnsConfig<T> where
    T: Transport + Send + 'static,
    <T as Transport>::Error: Send,
    <T as Transport>::Dial: Send
[src]

type Output = <T as Transport>::Output

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

type Error = DnsErr<<T as Transport>::Error>

An error that occurred during connection setup.

type Listener = MapErr<MapOk<<T as Transport>::Listener, fn(ListenerEvent<<T as Transport>::ListenerUpgrade, <T as Transport>::Error>) -> ListenerEvent<<DnsConfig<T> as Transport>::ListenerUpgrade, <DnsConfig<T> as Transport>::Error>>, fn(<T as Transport>::Error) -> <DnsConfig<T> as Transport>::Error>

A stream of Outputs for inbound connections. Read more

type ListenerUpgrade = MapErr<<T as Transport>::ListenerUpgrade, fn(<T as Transport>::Error) -> <DnsConfig<T> as Transport>::Error>

A pending Output for an inbound connection, obtained from the Listener stream. Read more

type Dial = Either<MapErr<<T as Transport>::Dial, fn(<T as Transport>::Error) -> <DnsConfig<T> as Transport>::Error>, Pin<Box<dyn Future<Output = Result<<DnsConfig<T> as Transport>::Output, <DnsConfig<T> as Transport>::Error>> + 'static + Send>>>

A pending Output for an outbound connection, obtained from dialing. 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>,