Struct libp2p_swarm::handler::MapOutEvent
source · pub struct MapOutEvent<TConnectionHandler, TMap> { /* private fields */ }
Expand description
Wrapper around a protocol handler that turns the output event into something else.
Trait Implementations§
source§impl<TConnectionHandler, TMap, TNewOut> ConnectionHandler for MapOutEvent<TConnectionHandler, TMap>where
TConnectionHandler: ConnectionHandler,
TMap: FnMut(TConnectionHandler::ToBehaviour) -> TNewOut + Send + 'static,
TNewOut: Debug + Send + 'static,
impl<TConnectionHandler, TMap, TNewOut> ConnectionHandler for MapOutEvent<TConnectionHandler, TMap>where
TConnectionHandler: ConnectionHandler,
TMap: FnMut(TConnectionHandler::ToBehaviour) -> TNewOut + Send + 'static,
TNewOut: Debug + Send + 'static,
§type FromBehaviour = <TConnectionHandler as ConnectionHandler>::FromBehaviour
type FromBehaviour = <TConnectionHandler as ConnectionHandler>::FromBehaviour
A type representing the message(s) a
NetworkBehaviour
can send to a ConnectionHandler
via ToSwarm::NotifyHandler
§type ToBehaviour = TNewOut
type ToBehaviour = TNewOut
A type representing message(s) a
ConnectionHandler
can send to a NetworkBehaviour
via ConnectionHandlerEvent::NotifyBehaviour
.§type Error = <TConnectionHandler as ConnectionHandler>::Error
type Error = <TConnectionHandler as ConnectionHandler>::Error
👎Deprecated: Will be removed together with
ConnectionHandlerEvent::Close
. See https://github.com/libp2p/rust-libp2p/issues/3591 for details.The type of errors returned by
ConnectionHandler::poll
.§type InboundProtocol = <TConnectionHandler as ConnectionHandler>::InboundProtocol
type InboundProtocol = <TConnectionHandler as ConnectionHandler>::InboundProtocol
The inbound upgrade for the protocol(s) used by the handler.
§type OutboundProtocol = <TConnectionHandler as ConnectionHandler>::OutboundProtocol
type OutboundProtocol = <TConnectionHandler as ConnectionHandler>::OutboundProtocol
The outbound upgrade for the protocol(s) used by the handler.
§type InboundOpenInfo = <TConnectionHandler as ConnectionHandler>::InboundOpenInfo
type InboundOpenInfo = <TConnectionHandler as ConnectionHandler>::InboundOpenInfo
The type of additional information returned from
listen_protocol
.§type OutboundOpenInfo = <TConnectionHandler as ConnectionHandler>::OutboundOpenInfo
type OutboundOpenInfo = <TConnectionHandler as ConnectionHandler>::OutboundOpenInfo
The type of additional information passed to an
OutboundSubstreamRequest
.source§fn listen_protocol(
&self,
) -> SubstreamProtocol<Self::InboundProtocol, Self::InboundOpenInfo>
fn listen_protocol( &self, ) -> SubstreamProtocol<Self::InboundProtocol, Self::InboundOpenInfo>
The
InboundUpgrade
to apply on inbound
substreams to negotiate the desired protocols. Read moresource§fn on_behaviour_event(&mut self, event: Self::FromBehaviour)
fn on_behaviour_event(&mut self, event: Self::FromBehaviour)
Informs the handler about an event from the
NetworkBehaviour
.source§fn connection_keep_alive(&self) -> KeepAlive
fn connection_keep_alive(&self) -> KeepAlive
Returns until when the connection should be kept alive. Read more
source§fn poll(
&mut self,
cx: &mut Context<'_>,
) -> Poll<ConnectionHandlerEvent<Self::OutboundProtocol, Self::OutboundOpenInfo, Self::ToBehaviour, Self::Error>>
fn poll( &mut self, cx: &mut Context<'_>, ) -> Poll<ConnectionHandlerEvent<Self::OutboundProtocol, Self::OutboundOpenInfo, Self::ToBehaviour, Self::Error>>
Should behave like
Stream::poll()
.fn on_connection_event( &mut self, event: ConnectionEvent<'_, Self::InboundProtocol, Self::OutboundProtocol, Self::InboundOpenInfo, Self::OutboundOpenInfo>, )
source§fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap>
fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap>
Adds a closure that turns the input event into something else.
source§fn map_out_event<TMap, TNewOut>(self, map: TMap) -> MapOutEvent<Self, TMap>
fn map_out_event<TMap, TNewOut>(self, map: TMap) -> MapOutEvent<Self, TMap>
Adds a closure that turns the output event into something else.
source§fn select<TProto2>(
self,
other: TProto2,
) -> ConnectionHandlerSelect<Self, TProto2>where
Self: Sized,
fn select<TProto2>(
self,
other: TProto2,
) -> ConnectionHandlerSelect<Self, TProto2>where
Self: Sized,
Creates a new
ConnectionHandler
that selects either this handler or
other
by delegating methods calls appropriately. Read moreAuto Trait Implementations§
impl<TConnectionHandler, TMap> Freeze for MapOutEvent<TConnectionHandler, TMap>
impl<TConnectionHandler, TMap> RefUnwindSafe for MapOutEvent<TConnectionHandler, TMap>where
TConnectionHandler: RefUnwindSafe,
TMap: RefUnwindSafe,
impl<TConnectionHandler, TMap> Send for MapOutEvent<TConnectionHandler, TMap>
impl<TConnectionHandler, TMap> Sync for MapOutEvent<TConnectionHandler, TMap>
impl<TConnectionHandler, TMap> Unpin for MapOutEvent<TConnectionHandler, TMap>
impl<TConnectionHandler, TMap> UnwindSafe for MapOutEvent<TConnectionHandler, TMap>where
TConnectionHandler: UnwindSafe,
TMap: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more