[][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
) -> NodeHandlerWrapperBuilder<TIntoProtoHandler>
[src]

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

pub fn with_out_negotiation_timeout(
    self,
    timeout: Duration
) -> NodeHandlerWrapperBuilder<TIntoProtoHandler>
[src]

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

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

Deprecated:

Pass the NodeHandlerWrapperBuilder directly

Builds the NodeHandlerWrapper.

Trait Implementations

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

type Handler = NodeHandlerWrapper<<TIntoProtoHandler as IntoProtocolsHandler>::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> From for T[src]

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

impl<T, U> TryFrom for T where
    U: Into<T>, 
[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> Any for T where
    T: 'static + ?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> Same for T

type Output = T

Should always be Self

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

type Handler = T

The node handler.

impl<T> Erased for T

impl<T> Erased for T

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.