Struct libp2p_core::transport::and_then::AndThen [−][src]
pub struct AndThen<T, C> { /* fields omitted */ }Expand description
See the Transport::and_then method.
Trait Implementations
type Error = EitherError<T::Error, F::Error>
type Error = EitherError<T::Error, F::Error>An error that occurred during connection setup.
type Listener = AndThenStream<T::Listener, C>
type Listener = AndThenStream<T::Listener, C>type ListenerUpgrade = AndThenFuture<T::ListenerUpgrade, C, F>
type ListenerUpgrade = AndThenFuture<T::ListenerUpgrade, C, F>type Dial = AndThenFuture<T::Dial, C, F>
type Dial = AndThenFuture<T::Dial, C, F>Listens on the given Multiaddr, producing a stream of pending, inbound connections
and addresses this transport is listening on (cf. ListenerEvent). Read more
Performs a transport-specific mapping of an address observed by
a remote onto a local listen address to yield an address for
the local node that may be reachable for other peers. Read more
Boxes the transport, including custom transport errors.
Applies a function on the connections created by the transport.
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
Applies a function producing an asynchronous result to every connection created by this transport. Read more
Auto Trait Implementations
impl<T, C> RefUnwindSafe for AndThen<T, C> where
C: RefUnwindSafe,
T: RefUnwindSafe, impl<T, C> UnwindSafe for AndThen<T, C> where
C: UnwindSafe,
T: UnwindSafe, Blanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = TShould always be Self
pub fn vzip(self) -> V