Type Alias Transport

Source
pub type Transport<T> = Transport<T, AsyncStdResolver>;
Available on crate feature async-std only.
Expand description

A Transport wrapper for performing DNS lookups when dialing Multiaddresses using async-std for all async I/O.

Aliased Type§

struct Transport<T> { /* private fields */ }

Implementations§

Source§

impl<T> Transport<T>

Source

pub async fn system(inner: T) -> Result<Transport<T>, Error>

Creates a new Transport from the OS’s DNS configuration and defaults.

Source

pub async fn custom( inner: T, cfg: ResolverConfig, opts: ResolverOpts, ) -> Transport<T>

Creates a Transport with a custom resolver configuration and options.

Trait Implementations

Source§

impl<T: Debug, R: Debug> Debug for Transport<T, R>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T, R> Transport for Transport<T, R>
where T: Transport + Send + Unpin + 'static, T::Error: Send, T::Dial: Send, R: Clone + Send + Sync + Resolver + 'static,

Source§

type Output = <T as Transport>::Output

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

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

An error that occurred during connection setup.
Source§

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

A pending Output for an inbound connection, obtained from the [Transport] stream. Read more
Source§

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

A pending Output for an outbound connection, obtained from dialing.
Source§

fn listen_on( &mut self, id: ListenerId, addr: Multiaddr, ) -> Result<(), TransportError<Self::Error>>

Listens on the given [Multiaddr] for inbound connections with a provided [ListenerId].
Source§

fn remove_listener(&mut self, id: ListenerId) -> bool

Remove a listener. Read more
Source§

fn dial( &mut self, addr: Multiaddr, dial_opts: DialOpts, ) -> Result<Self::Dial, TransportError<Self::Error>>

Dials the given [Multiaddr], returning a future for a pending outbound connection. Read more
Source§

fn poll( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<TransportEvent<Self::ListenerUpgrade, Self::Error>>

Poll for [TransportEvent]s. Read more
§

fn boxed(self) -> Boxed<Self::Output>
where Self: Sized + Send + Unpin + 'static, Self::Dial: Send + 'static, Self::ListenerUpgrade: Send + 'static, Self::Error: Send + Sync,

Boxes the transport, including custom transport errors.
§

fn map<F, O>(self, f: F) -> Map<Self, F>
where Self: Sized, F: FnOnce(Self::Output, ConnectedPoint) -> O,

Applies a function on the connections created by the transport.
§

fn map_err<F, E>(self, f: F) -> MapErr<Self, F>
where Self: Sized, F: FnOnce(Self::Error) -> E,

Applies a function on the errors generated by the futures of the transport.
§

fn or_transport<U>(self, other: U) -> OrTransport<Self, U>
where Self: Sized, U: Transport, <U as Transport>::Error: 'static,

Adds a fallback transport that is used when encountering errors while establishing inbound or outbound connections. Read more
§

fn and_then<C, F, O>(self, f: C) -> AndThen<Self, C>
where Self: Sized, C: FnOnce(Self::Output, ConnectedPoint) -> F, F: TryFuture<Ok = O>, <F as TryFuture>::Error: Error + 'static,

Applies a function producing an asynchronous result to every connection created by this transport. Read more
§

fn upgrade(self, version: Version) -> Builder<Self>
where Self: Sized, Self::Error: 'static,

Begins a series of protocol upgrades via an [upgrade::Builder].