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 Multiaddr
esses
using async-std
for all async I/O.
Aliased Type§
struct Transport<T> { /* private fields */ }
Implementations§
Source§impl<T> Transport<T>
impl<T> Transport<T>
Sourcepub async fn system(inner: T) -> Result<Transport<T>, Error>
pub async fn system(inner: T) -> Result<Transport<T>, Error>
Creates a new Transport
from the OS’s DNS configuration and defaults.
Sourcepub async fn custom(
inner: T,
cfg: ResolverConfig,
opts: ResolverOpts,
) -> Transport<T>
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, R> Transport for Transport<T, R>
impl<T, R> Transport for Transport<T, R>
Source§type Output = <T as Transport>::Output
type Output = <T as Transport>::Output
The result of a connection setup process, including protocol upgrades. Read more
Source§type ListenerUpgrade = MapErr<<T as Transport>::ListenerUpgrade, fn(_: <T as Transport>::Error) -> <Transport<T, R> as Transport>::Error>
type ListenerUpgrade = MapErr<<T as Transport>::ListenerUpgrade, fn(_: <T as Transport>::Error) -> <Transport<T, R> as Transport>::Error>
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>>>
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>>>
Source§fn listen_on(
&mut self,
id: ListenerId,
addr: Multiaddr,
) -> Result<(), TransportError<Self::Error>>
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
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>>
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 moreSource§fn poll(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<TransportEvent<Self::ListenerUpgrade, Self::Error>>
fn poll( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<TransportEvent<Self::ListenerUpgrade, Self::Error>>
Poll for [
TransportEvent
]s. Read more§fn map<F, O>(self, f: F) -> Map<Self, F>
fn map<F, O>(self, f: F) -> Map<Self, F>
Applies a function on the connections created by the transport.
§fn map_err<F, E>(self, f: F) -> MapErr<Self, F>
fn map_err<F, E>(self, f: F) -> MapErr<Self, F>
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,
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