Struct tetsy_libp2p_swarm::protocols_handler::DummyProtocolsHandler[][src]

pub struct DummyProtocolsHandler {
    pub keep_alive: KeepAlive,
}

Implementation of ProtocolsHandler that doesn’t handle anything.

Fields

keep_alive: KeepAlive

Trait Implementations

impl Clone for DummyProtocolsHandler[src]

impl Debug for DummyProtocolsHandler[src]

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.

type InboundOpenInfo = ()

The type of additional information returned from listen_protocol.

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> 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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