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
) -> <ToggleIntoConnectionHandler<TInner> as IntoConnectionHandler>::Handler
fn into_handler( self, remote_peer_id: &PeerId, connected_point: &ConnectedPoint ) -> <ToggleIntoConnectionHandler<TInner> as IntoConnectionHandler>::Handler
Builds the protocols handler. Read more
source§fn inbound_protocol(
&self
) -> <<ToggleIntoConnectionHandler<TInner> as IntoConnectionHandler>::Handler as ConnectionHandler>::InboundProtocol
fn inbound_protocol( &self ) -> <<ToggleIntoConnectionHandler<TInner> 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.Auto Trait Implementations§
impl<TInner> RefUnwindSafe for ToggleIntoConnectionHandler<TInner>where TInner: RefUnwindSafe,
impl<TInner> Send for ToggleIntoConnectionHandler<TInner>where TInner: Send,
impl<TInner> Sync for ToggleIntoConnectionHandler<TInner>where TInner: Sync,
impl<TInner> Unpin for ToggleIntoConnectionHandler<TInner>where TInner: Unpin,
impl<TInner> UnwindSafe for ToggleIntoConnectionHandler<TInner>where TInner: 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