[][src]Struct libp2p_core::protocols_handler::MapInEvent

pub struct MapInEvent<TProtoHandler, TNewIn, TMap> { /* fields omitted */ }

Wrapper around a protocol handler that turns the input event into something else.

Trait Implementations

impl<TProtoHandler, TMap, TNewIn> ProtocolsHandler for MapInEvent<TProtoHandler, TNewIn, TMap> where
    TProtoHandler: ProtocolsHandler,
    TMap: Fn(TNewIn) -> Option<TProtoHandler::InEvent>, 
[src]

type InEvent = TNewIn

Custom event that can be received from the outside.

type OutEvent = TProtoHandler::OutEvent

Custom event that can be produced by the handler and that will be returned to the outside.

type Error = TProtoHandler::Error

Error that can happen when polling.

type Substream = TProtoHandler::Substream

The type of the substream that contains the raw data.

type InboundProtocol = TProtoHandler::InboundProtocol

The upgrade for the protocol or protocols handled by this handler.

type OutboundProtocol = TProtoHandler::OutboundProtocol

The upgrade for the protocol or protocols handled by this handler.

type OutboundOpenInfo = TProtoHandler::OutboundOpenInfo

Information about a substream. Can be sent to the handler through a NodeHandlerEndpoint, and will be passed back in inject_substream or inject_outbound_closed. Read more

fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap> where
    Self: Sized,
    TMap: Fn(&TNewIn) -> Option<&Self::InEvent>, 
[src]

Adds a closure that turns the input event into something else.

fn map_out_event<TMap, TNewOut>(self, map: TMap) -> MapOutEvent<Self, TMap> where
    Self: Sized,
    TMap: FnMut(Self::OutEvent) -> TNewOut, 
[src]

Adds a closure that turns the output event into something else.

fn select<TProto2>(
    self,
    other: TProto2
) -> ProtocolsHandlerSelect<Self, TProto2> where
    Self: Sized
[src]

Builds an implementation of ProtocolsHandler that handles both this protocol and the other one together. Read more

fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self> where
    Self: Sized
[src]

Creates a builder that will allow creating a NodeHandler that handles this protocol exclusively. Read more

fn into_node_handler(self) -> NodeHandlerWrapper<Self> where
    Self: Sized
[src]

Deprecated:

Use into_node_handler_builder instead

Builds an implementation of NodeHandler that handles this protocol exclusively. Read more

Auto Trait Implementations

impl<TProtoHandler, TNewIn, TMap> Send for MapInEvent<TProtoHandler, TNewIn, TMap> where
    TMap: Send,
    TNewIn: Send,
    TProtoHandler: Send

impl<TProtoHandler, TNewIn, TMap> Sync for MapInEvent<TProtoHandler, TNewIn, TMap> where
    TMap: Sync,
    TNewIn: Sync,
    TProtoHandler: Sync

Blanket Implementations

impl<T> IntoProtocolsHandler for T where
    T: ProtocolsHandler
[src]

type Handler = T

The protocols handler.

fn select<TProto2>(
    self,
    other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2> where
    Self: Sized
[src]

Builds an implementation of IntoProtocolsHandler that handles both this protocol and the other one together. Read more

fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self> where
    Self: Sized
[src]

Creates a builder that will allow creating a NodeHandler that handles this protocol exclusively. Read more

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T