[][src]Struct libp2p::swarm::toggle::ToggleProtoHandler

pub struct ToggleProtoHandler<TInner> { /* fields omitted */ }

Implementation of ProtocolsHandler that can be in the disabled state.

Trait Implementations

impl<TInner> ProtocolsHandler for ToggleProtoHandler<TInner> where
    TInner: ProtocolsHandler
[src]

type InEvent = <TInner as ProtocolsHandler>::InEvent

Custom event that can be received from the outside.

type OutEvent = <TInner as ProtocolsHandler>::OutEvent

Custom event that can be produced by the handler and that will be returned to the outside.

type Error = <TInner as ProtocolsHandler>::Error

The type of errors returned by [ProtocolsHandler::poll].

type InboundProtocol = EitherUpgrade<SendWrapper<<TInner as ProtocolsHandler>::InboundProtocol>, SendWrapper<DeniedUpgrade>>

The inbound upgrade for the protocol(s) used by the handler.

type OutboundProtocol = <TInner as ProtocolsHandler>::OutboundProtocol

The outbound upgrade for the protocol(s) used by the handler.

type OutboundOpenInfo = <TInner as ProtocolsHandler>::OutboundOpenInfo

The type of additional information passed to an OutboundSubstreamRequest.

Auto Trait Implementations

impl<TInner> RefUnwindSafe for ToggleProtoHandler<TInner> where
    TInner: RefUnwindSafe

impl<TInner> Send for ToggleProtoHandler<TInner> where
    TInner: Send

impl<TInner> Sync for ToggleProtoHandler<TInner> where
    TInner: Sync

impl<TInner> Unpin for ToggleProtoHandler<TInner> where
    TInner: Unpin

impl<TInner> UnwindSafe for ToggleProtoHandler<TInner> where
    TInner: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoProtocolsHandler for T where
    T: ProtocolsHandler
[src]

type Handler = T

The protocols handler.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,