[][src]Struct libp2p::swarm::protocols_handler::IntoProtocolsHandlerSelect

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

Implementation of IntoProtocolsHandler that combines two protocols into one.

Trait Implementations

impl<TProto1, TProto2> Debug for IntoProtocolsHandlerSelect<TProto1, TProto2> where
    TProto1: Debug,
    TProto2: Debug
[src]

impl<TProto1, TProto2> Clone for IntoProtocolsHandlerSelect<TProto1, TProto2> where
    TProto1: Clone,
    TProto2: Clone
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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

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

The protocols handler.

fn select<TProto2>(
    self,
    other: TProto2
) -> IntoProtocolsHandlerSelect<Self, 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>[src]

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

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

type Handler = T

The protocols handler.

fn select<TProto2>(
    self,
    other: TProto2
) -> IntoProtocolsHandlerSelect<Self, 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>[src]

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

impl<T> Erased for T