[][src]Struct libp2p_swarm::protocols_handler::DummyProtocolsHandler

pub struct DummyProtocolsHandler {}

Implementation of ProtocolsHandler that doesn't handle anything.

Trait Implementations

impl Default for DummyProtocolsHandler[src]

impl ProtocolsHandler for DummyProtocolsHandler[src]

type InEvent = Void

Custom event that can be received from the outside.

type OutEvent = Void

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

type Error = Void

The type of errors returned by ProtocolsHandler::poll.

type InboundProtocol = DeniedUpgrade

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

type OutboundProtocol = DeniedUpgrade

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

type OutboundOpenInfo = Void

The type of additional information passed to an OutboundSubstreamRequest.

Auto Trait Implementations

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> Clear for T where
    T: InitializableFromZeroed + ?Sized

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

impl<T> InitializableFromZeroed for T where
    T: Default

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>,