Struct tet_libp2p_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) -> 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> Clone for DnsConfig<T>[src]

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

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

type Output = T::Output

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

type Error = DnsErr<T::Error>

An error that occurred during connection setup.

type Listener = MapErr<MapOk<T::Listener, fn(_: ListenerEvent<T::ListenerUpgrade, T::Error>) -> ListenerEvent<Self::ListenerUpgrade, Self::Error>>, fn(_: T::Error) -> Self::Error>

A stream of Outputs for inbound connections. Read more

type ListenerUpgrade = MapErr<T::ListenerUpgrade, fn(_: T::Error) -> Self::Error>

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

type Dial = Either<MapErr<T::Dial, fn(_: T::Error) -> Self::Error>, BoxFuture<'static, Result<Self::Output, Self::Error>>>

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>,