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>
👎Deprecated: Implement
ConnectionHandler
directly and use NetworkBehaviour::{handle_pending_inbound_connection,handle_pending_outbound_connection}
to handle pending connections.The protocols handler.
source§fn into_handler(self, p: &PeerId, c: &ConnectedPoint) -> Self::Handler
fn into_handler(self, p: &PeerId, c: &ConnectedPoint) -> Self::Handler
👎Deprecated: Implement
ConnectionHandler
directly and use NetworkBehaviour::{handle_pending_inbound_connection,handle_pending_outbound_connection}
to handle pending connections.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
👎Deprecated: Implement
ConnectionHandler
directly and use NetworkBehaviour::{handle_pending_inbound_connection,handle_pending_outbound_connection}
to handle pending connections.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,
👎Deprecated: Implement
ConnectionHandler
directly and use NetworkBehaviour::{handle_pending_inbound_connection,handle_pending_outbound_connection}
to handle pending connections.Builds an implementation of
IntoConnectionHandler
that handles both this protocol and the
other one together.Auto Trait Implementations§
impl<L, R> RefUnwindSafe for IntoEitherHandler<L, R>where L: RefUnwindSafe, R: RefUnwindSafe,
impl<L, R> Send for IntoEitherHandler<L, R>where L: Send, R: Send,
impl<L, R> Sync for IntoEitherHandler<L, R>where L: Sync, R: Sync,
impl<L, R> Unpin for IntoEitherHandler<L, R>where L: Unpin, R: Unpin,
impl<L, R> UnwindSafe for IntoEitherHandler<L, R>where L: UnwindSafe, R: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more