[][src]Struct libp2p_core::protocols_handler::NodeHandlerWrapperBuilder

pub struct NodeHandlerWrapperBuilder<TIntoProtoHandler> { /* fields omitted */ }

Prototype for a NodeHandlerWrapper.

Methods

impl<TIntoProtoHandler> NodeHandlerWrapperBuilder<TIntoProtoHandler> where
    TIntoProtoHandler: IntoProtocolsHandler
[src]

pub fn with_in_negotiation_timeout(self, timeout: Duration) -> Self
[src]

Sets the timeout to use when negotiating a protocol on an ingoing substream.

pub fn with_out_negotiation_timeout(self, timeout: Duration) -> Self
[src]

Sets the timeout to use when negotiating a protocol on an outgoing substream.

pub fn with_useless_timeout(self, timeout: Duration) -> Self
[src]

Sets the timeout between the moment connection_keep_alive() returns false on the ProtocolsHandler, and the moment the connection is closed.

pub fn build(self) -> NodeHandlerWrapper<TIntoProtoHandler> where
    TIntoProtoHandler: ProtocolsHandler
[src]

Deprecated:

Pass the NodeHandlerWrapperBuilder directly

Builds the NodeHandlerWrapper.

Trait Implementations

impl<TIntoProtoHandler, TProtoHandler> IntoNodeHandler for NodeHandlerWrapperBuilder<TIntoProtoHandler> where
    TIntoProtoHandler: IntoProtocolsHandler<Handler = TProtoHandler>,
    TProtoHandler: ProtocolsHandler,
    <TProtoHandler::OutboundProtocol as OutboundUpgrade<<TProtoHandler as ProtocolsHandler>::Substream>>::Error: Debug
[src]

type Handler = NodeHandlerWrapper<TIntoProtoHandler::Handler>

The node handler.

Auto Trait Implementations

impl<TIntoProtoHandler> Send for NodeHandlerWrapperBuilder<TIntoProtoHandler> where
    TIntoProtoHandler: Send

impl<TIntoProtoHandler> Sync for NodeHandlerWrapperBuilder<TIntoProtoHandler> where
    TIntoProtoHandler: Sync

Blanket Implementations

impl<T> IntoNodeHandler for T where
    T: NodeHandler
[src]

type Handler = T

The node handler.

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T