Struct libp2p_core::transport::dummy::DummyTransport [−][src]
pub struct DummyTransport<TOut = DummyStream>(_);
Implementation of Transport
that doesn’t support any multiaddr.
Useful for testing purposes, or as a fallback implementation when no protocol is available.
Implementations
Trait Implementations
impl<TOut> Clone for DummyTransport<TOut>
[src]
impl<TOut> Clone for DummyTransport<TOut>
[src]fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<TOut> Default for DummyTransport<TOut>
[src]
impl<TOut> Default for DummyTransport<TOut>
[src]impl<TOut> Transport for DummyTransport<TOut>
[src]
impl<TOut> Transport for DummyTransport<TOut>
[src]type Output = TOut
The result of a connection setup process, including protocol upgrades. Read more
type Error = Error
An error that occurred during connection setup.
type Listener = Pending<Result<ListenerEvent<Self::ListenerUpgrade, Self::Error>, Self::Error>>
type ListenerUpgrade = Pending<Result<Self::Output, Error>>
type Dial = Pending<Result<Self::Output, Error>>
fn listen_on(
self,
addr: Multiaddr
) -> Result<Self::Listener, TransportError<Self::Error>>
[src]
self,
addr: Multiaddr
) -> Result<Self::Listener, TransportError<Self::Error>>
fn dial(
self,
addr: Multiaddr
) -> Result<Self::Dial, TransportError<Self::Error>>
[src]
self,
addr: Multiaddr
) -> Result<Self::Dial, TransportError<Self::Error>>
fn address_translation(
&self,
_server: &Multiaddr,
_observed: &Multiaddr
) -> Option<Multiaddr>
[src]
&self,
_server: &Multiaddr,
_observed: &Multiaddr
) -> Option<Multiaddr>
fn boxed(self) -> Boxed<Self::Output> where
Self: Transport + Sized + Clone + Send + Sync + 'static,
Self::Dial: Send + 'static,
Self::Listener: Send + 'static,
Self::ListenerUpgrade: Send + 'static,
Self::Error: Send + Sync,
[src]
Self: Transport + Sized + Clone + Send + Sync + 'static,
Self::Dial: Send + 'static,
Self::Listener: Send + 'static,
Self::ListenerUpgrade: Send + 'static,
Self::Error: Send + Sync,
fn map<F, O>(self, f: F) -> Map<Self, F> where
Self: Sized,
F: FnOnce(Self::Output, ConnectedPoint) -> O + Clone,
[src]
Self: Sized,
F: FnOnce(Self::Output, ConnectedPoint) -> O + Clone,
fn map_err<F, E>(self, f: F) -> MapErr<Self, F> where
Self: Sized,
F: FnOnce(Self::Error) -> E + Clone,
[src]
Self: Sized,
F: FnOnce(Self::Error) -> E + Clone,
fn or_transport<U>(self, other: U) -> OrTransport<Self, U> where
Self: Sized,
U: Transport,
<U as Transport>::Error: 'static,
[src]
Self: Sized,
U: Transport,
<U as Transport>::Error: 'static,
fn and_then<C, F, O>(self, f: C) -> AndThen<Self, C> where
Self: Sized,
C: FnOnce(Self::Output, ConnectedPoint) -> F + Clone,
F: TryFuture<Ok = O>,
<F as TryFuture>::Error: Error + 'static,
[src]
Self: Sized,
C: FnOnce(Self::Output, ConnectedPoint) -> F + Clone,
F: TryFuture<Ok = O>,
<F as TryFuture>::Error: Error + 'static,
fn upgrade(self, version: Version) -> Builder<Self> where
Self: Sized,
Self::Error: 'static,
[src]
Self: Sized,
Self::Error: 'static,
Auto Trait Implementations
impl<TOut> RefUnwindSafe for DummyTransport<TOut> where
TOut: RefUnwindSafe,
TOut: RefUnwindSafe,
impl<TOut> Send for DummyTransport<TOut> where
TOut: Send,
TOut: Send,
impl<TOut> Sync for DummyTransport<TOut> where
TOut: Sync,
TOut: Sync,
impl<TOut> Unpin for DummyTransport<TOut> where
TOut: Unpin,
TOut: Unpin,
impl<TOut> UnwindSafe for DummyTransport<TOut> where
TOut: UnwindSafe,
TOut: UnwindSafe,