Enum libp2p_swarm::handler::either::IntoEitherHandler
source · pub enum IntoEitherHandler<L, R> {
Left(L),
Right(R),
}
Expand description
Auxiliary type to allow implementing IntoConnectionHandler
. As IntoConnectionHandler
is
already implemented for T, we cannot implement it for Either<A, B>.
Variants§
Implementations§
source§impl<L, R> IntoEitherHandler<L, R>
impl<L, R> IntoEitherHandler<L, R>
sourcepub fn unwrap_left(self) -> L
pub fn unwrap_left(self) -> L
Returns the left value.
sourcepub fn unwrap_right(self) -> R
pub fn unwrap_right(self) -> R
Returns the right value.
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