Struct libp2p_swarm::behaviour::toggle::ToggleIntoConnectionHandler
source · pub struct ToggleIntoConnectionHandler<TInner> { /* private fields */ }
Expand description
Implementation of IntoConnectionHandler
that can be in the disabled state.
Trait Implementations§
source§impl<TInner> IntoConnectionHandler for ToggleIntoConnectionHandler<TInner>where
TInner: IntoConnectionHandler,
impl<TInner> IntoConnectionHandler for ToggleIntoConnectionHandler<TInner>where
TInner: IntoConnectionHandler,
§type Handler = ToggleConnectionHandler<<TInner as IntoConnectionHandler>::Handler>
type Handler = ToggleConnectionHandler<<TInner as IntoConnectionHandler>::Handler>
The protocols handler.
source§fn into_handler(
self,
remote_peer_id: &PeerId,
connected_point: &ConnectedPoint
) -> Self::Handler
fn into_handler(
self,
remote_peer_id: &PeerId,
connected_point: &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