[−][src]Struct libp2p_core::protocols_handler::ProtocolsHandlerSelect
Implementation of ProtocolsHandler that combines two protocols into one.
Trait Implementations
impl<TSubstream, TProto1, TProto2> ProtocolsHandler for ProtocolsHandlerSelect<TProto1, TProto2> where
TProto1: ProtocolsHandler<Substream = TSubstream>,
TProto2: ProtocolsHandler<Substream = TSubstream>,
TSubstream: AsyncRead + AsyncWrite,
TProto1::InboundProtocol: InboundUpgrade<TSubstream>,
TProto2::InboundProtocol: InboundUpgrade<TSubstream>,
TProto1::OutboundProtocol: OutboundUpgrade<TSubstream>,
TProto2::OutboundProtocol: OutboundUpgrade<TSubstream>, [src]
impl<TSubstream, TProto1, TProto2> ProtocolsHandler for ProtocolsHandlerSelect<TProto1, TProto2> where
TProto1: ProtocolsHandler<Substream = TSubstream>,
TProto2: ProtocolsHandler<Substream = TSubstream>,
TSubstream: AsyncRead + AsyncWrite,
TProto1::InboundProtocol: InboundUpgrade<TSubstream>,
TProto2::InboundProtocol: InboundUpgrade<TSubstream>,
TProto1::OutboundProtocol: OutboundUpgrade<TSubstream>,
TProto2::OutboundProtocol: OutboundUpgrade<TSubstream>, type InEvent = EitherOutput<TProto1::InEvent, TProto2::InEvent>
Custom event that can be received from the outside.
type OutEvent = EitherOutput<TProto1::OutEvent, TProto2::OutEvent>
Custom event that can be produced by the handler and that will be returned to the outside.
type Error = EitherError<TProto1::Error, TProto2::Error>
Error that can happen when polling.
type Substream = TSubstream
The type of the substream that contains the raw data.
type InboundProtocol = SelectUpgrade<TProto1::InboundProtocol, TProto2::InboundProtocol>
The upgrade for the protocol or protocols handled by this handler.
type OutboundProtocol = EitherUpgrade<TProto1::OutboundProtocol, TProto2::OutboundProtocol>
The upgrade for the protocol or protocols handled by this handler.
type OutboundOpenInfo = EitherOutput<TProto1::OutboundOpenInfo, TProto2::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 listen_protocol(&self) -> Self::InboundProtocol | [src] |
fn inject_fully_negotiated_outbound( | [src] |
fn inject_fully_negotiated_inbound( | [src] |
fn inject_event(&mut self, event: Self::InEvent) | [src] |
fn inject_inbound_closed(&mut self) | [src] |
fn inject_dial_upgrade_error( | [src] |
fn connection_keep_alive(&self) -> bool | [src] |
fn shutdown(&mut self) | [src] |
fn poll( | [src] |
fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap> where | [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 | [src] |
Adds a closure that turns the output event into something else.
fn select<TProto2>( | [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 | [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 | [src] |
Use into_node_handler_builder instead
Builds an implementation of NodeHandler that handles this protocol exclusively. Read more
impl<TProto1: Clone, TProto2: Clone> Clone for ProtocolsHandlerSelect<TProto1, TProto2>[src]
impl<TProto1: Clone, TProto2: Clone> Clone for ProtocolsHandlerSelect<TProto1, TProto2>fn clone(&self) -> ProtocolsHandlerSelect<TProto1, TProto2> | [src] |
fn clone_from(&mut self, source: &Self) | 1.0.0 [src] |
Performs copy-assignment from source. Read more
impl<TProto1: Debug, TProto2: Debug> Debug for ProtocolsHandlerSelect<TProto1, TProto2>[src]
impl<TProto1: Debug, TProto2: Debug> Debug for ProtocolsHandlerSelect<TProto1, TProto2>Auto Trait Implementations
impl<TProto1, TProto2> Send for ProtocolsHandlerSelect<TProto1, TProto2> where
TProto1: Send,
TProto2: Send,
impl<TProto1, TProto2> Send for ProtocolsHandlerSelect<TProto1, TProto2> where
TProto1: Send,
TProto2: Send, impl<TProto1, TProto2> Sync for ProtocolsHandlerSelect<TProto1, TProto2> where
TProto1: Sync,
TProto2: Sync,
impl<TProto1, TProto2> Sync for ProtocolsHandlerSelect<TProto1, TProto2> where
TProto1: Sync,
TProto2: Sync, Blanket Implementations
impl<T> IntoProtocolsHandler for T where
T: ProtocolsHandler, [src]
impl<T> IntoProtocolsHandler for T where
T: ProtocolsHandler, type Handler = T
The protocols handler.
fn into_handler(Self, &PeerId) -> T | [src] |
fn select<TProto2>( | [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 | [src] |
Creates a builder that will allow creating a NodeHandler that handles this protocol exclusively. Read more
impl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, impl<T> From for T[src]
impl<T> From for Timpl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error> | [src] |
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId | [src] |
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error> | [src] |
impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T | [src] |
impl<T> Same for T
impl<T> Same for Ttype Output = T
Should always be Self
impl<T> Erased for T
impl<T> Erased for T