[][src]Struct libp2p_core::protocols_handler::IntoProtocolsHandlerSelect

pub struct IntoProtocolsHandlerSelect<TProto1, TProto2> { /* fields omitted */ }

Implementation of IntoProtocolsHandler that combines two protocols into one.

Trait Implementations

impl<TProto1, TProto2, TSubstream> IntoProtocolsHandler for IntoProtocolsHandlerSelect<TProto1, TProto2> where
    TProto1: IntoProtocolsHandler,
    TProto2: IntoProtocolsHandler,
    TProto1::Handler: ProtocolsHandler<Substream = TSubstream>,
    TProto2::Handler: ProtocolsHandler<Substream = TSubstream>,
    TSubstream: AsyncRead + AsyncWrite,
    <TProto1::Handler as ProtocolsHandler>::InboundProtocol: InboundUpgrade<TSubstream>,
    <TProto2::Handler as ProtocolsHandler>::InboundProtocol: InboundUpgrade<TSubstream>,
    <TProto1::Handler as ProtocolsHandler>::OutboundProtocol: OutboundUpgrade<TSubstream>,
    <TProto2::Handler as ProtocolsHandler>::OutboundProtocol: OutboundUpgrade<TSubstream>, 
[src]

type Handler = ProtocolsHandlerSelect<TProto1::Handler, TProto2::Handler>

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<TProto1: Clone, TProto2: Clone> Clone for IntoProtocolsHandlerSelect<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 IntoProtocolsHandlerSelect<TProto1, TProto2>
[src]

Auto Trait Implementations

impl<TProto1, TProto2> Send for IntoProtocolsHandlerSelect<TProto1, TProto2> where
    TProto1: Send,
    TProto2: Send

impl<TProto1, TProto2> Sync for IntoProtocolsHandlerSelect<TProto1, TProto2> where
    TProto1: Sync,
    TProto2: 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, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for 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> Any for T where
    T: 'static + ?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> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T