[][src]Struct libp2p::swarm::protocols_handler::DummyProtocolsHandler

pub struct DummyProtocolsHandler<TSubstream> { /* fields omitted */ }

Implementation of ProtocolsHandler that doesn't handle anything.

Trait Implementations

impl<TSubstream> ProtocolsHandler for DummyProtocolsHandler<TSubstream> where
    TSubstream: AsyncRead + AsyncWrite
[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 Substream = TSubstream

The type of substreams on which the protocol(s) are negotiated.

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.

fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap> where
    TMap: Fn(&TNewIn) -> Option<&Self::InEvent>, 
[src]

Adds a closure that turns the input event into something else.

fn map_out_event<TMap, TNewOut>(self, map: TMap) -> MapOutEvent<Self, TMap> where
    TMap: FnMut(Self::OutEvent) -> TNewOut, 
[src]

Adds a closure that turns the output event into something else.

fn select<TProto2>(
    self,
    other: TProto2
) -> ProtocolsHandlerSelect<Self, TProto2>
[src]

Creates a new ProtocolsHandler that selects either this handler or other by delegating methods calls appropriately. Read more

fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self>[src]

Creates a builder that allows creating a NodeHandler that handles this protocol exclusively. Read more

fn into_node_handler(self) -> NodeHandlerWrapper<Self>[src]

Deprecated:

Use into_node_handler_builder instead

Builds an implementation of NodeHandler that handles this protocol exclusively. Read more

impl<TSubstream> Default for DummyProtocolsHandler<TSubstream>[src]

Auto Trait Implementations

impl<TSubstream> Sync for DummyProtocolsHandler<TSubstream> where
    TSubstream: Sync

impl<TSubstream> Send for DummyProtocolsHandler<TSubstream> where
    TSubstream: Send

impl<TSubstream> Unpin for DummyProtocolsHandler<TSubstream> where
    TSubstream: Unpin

impl<TSubstream> RefUnwindSafe for DummyProtocolsHandler<TSubstream> where
    TSubstream: RefUnwindSafe

impl<TSubstream> UnwindSafe for DummyProtocolsHandler<TSubstream> where
    TSubstream: UnwindSafe

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T> Erased for T

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

type Handler = T

The protocols handler.

fn select<TProto2>(
    self,
    other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2>
[src]

Builds an implementation of IntoProtocolsHandler that handles both this protocol and the other one together. Read more

fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self>[src]

Creates a builder that will allow creating a NodeHandler that handles this protocol exclusively. Read more

impl<T> Erased for T