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
) -> <IntoEitherHandler<L, R> as IntoConnectionHandler>::Handler
fn into_handler(
self,
p: &PeerId,
c: &ConnectedPoint
) -> <IntoEitherHandler<L, R> as IntoConnectionHandler>::Handler
Builds the protocols handler. Read more
source§fn inbound_protocol(
&self
) -> <<IntoEitherHandler<L, R> as IntoConnectionHandler>::Handler as ConnectionHandler>::InboundProtocol
fn inbound_protocol(
&self
) -> <<IntoEitherHandler<L, R> as IntoConnectionHandler>::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