Enum libp2p_swarm::handler::either::IntoEitherHandler
source · pub enum IntoEitherHandler<L, R> {
Left(L),
Right(R),
}
Variants§
Trait Implementations§
source§impl<L, R> IntoConnectionHandler for IntoEitherHandler<L, R>where
L: IntoConnectionHandler,
R: IntoConnectionHandler,
impl<L, R> IntoConnectionHandler for IntoEitherHandler<L, R>where
L: IntoConnectionHandler,
R: IntoConnectionHandler,
Implementation of a IntoConnectionHandler
that represents either of two IntoConnectionHandler
implementations.
§type Handler = Either<<L as IntoConnectionHandler>::Handler, <R as IntoConnectionHandler>::Handler>
type Handler = Either<<L as IntoConnectionHandler>::Handler, <R as IntoConnectionHandler>::Handler>
The protocols handler.
source§fn into_handler(self, p: &PeerId, c: &ConnectedPoint) -> Self::Handler
fn into_handler(self, p: &PeerId, c: &ConnectedPoint) -> Self::Handler
Builds the protocols handler. Read more
source§fn inbound_protocol(
&self
) -> <Self::Handler as ConnectionHandler>::InboundProtocol
fn inbound_protocol(
&self
) -> <Self::Handler as ConnectionHandler>::InboundProtocol
Return the handler’s inbound protocol.
source§fn select<TProto2>(
self,
other: TProto2
) -> IntoConnectionHandlerSelect<Self, TProto2>where
Self: Sized,
fn select<TProto2>(
self,
other: TProto2
) -> IntoConnectionHandlerSelect<Self, TProto2>where
Self: Sized,
Builds an implementation of
IntoConnectionHandler
that handles both this protocol and the
other one together. Read more