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

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

Prototype for a NodeHandlerWrapper.

Methods

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

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

Deprecated:

Pass the NodeHandlerWrapperBuilder directly

Builds the NodeHandlerWrapper.

Trait Implementations

impl<TIntoProtoHandler, TProtoHandler, TConnInfo> IntoNodeHandler<(TConnInfo, ConnectedPoint)> for NodeHandlerWrapperBuilder<TIntoProtoHandler> where
    TConnInfo: ConnectionInfo<PeerId = PeerId>,
    TIntoProtoHandler: IntoProtocolsHandler<Handler = TProtoHandler>,
    TProtoHandler: ProtocolsHandler
[src]

type Handler = NodeHandlerWrapper<<TIntoProtoHandler as IntoProtocolsHandler>::Handler>

The node handler.

Auto Trait Implementations

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

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

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

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

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

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, TConnInfo> IntoNodeHandler<TConnInfo> for T where
    T: NodeHandler
[src]

type Handler = T

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