[][src]Struct libp2p_kad::handler::KademliaHandler

pub struct KademliaHandler<TUserData> { /* fields omitted */ }

Protocol handler that handles Kademlia communications with the remote.

The handler will automatically open a Kademlia substream with the remote for each request we make.

It also handles requests made by the remote.

Implementations

impl<TUserData> KademliaHandler<TUserData>[src]

pub fn new(config: KademliaHandlerConfig) -> Self[src]

Create a KademliaHandler using the given configuration.

Trait Implementations

impl<TUserData> Default for KademliaHandler<TUserData>[src]

impl<TUserData> ProtocolsHandler for KademliaHandler<TUserData> where
    TUserData: Clone + Send + 'static, 
[src]

type InEvent = KademliaHandlerIn<TUserData>

Custom event that can be received from the outside.

type OutEvent = KademliaHandlerEvent<TUserData>

Custom event that can be produced by the handler and that will be returned to the outside.

type Error = Error

The type of errors returned by [ProtocolsHandler::poll].

type InboundProtocol = EitherUpgrade<KademliaProtocolConfig, DeniedUpgrade>

The inbound upgrade for the protocol(s) used by the handler.

type OutboundProtocol = KademliaProtocolConfig

The outbound upgrade for the protocol(s) used by the handler.

type OutboundOpenInfo = (KadRequestMsg, Option<TUserData>)

The type of additional information passed to an OutboundSubstreamRequest.

Auto Trait Implementations

impl<TUserData> !RefUnwindSafe for KademliaHandler<TUserData>

impl<TUserData> Send for KademliaHandler<TUserData> where
    TUserData: Send

impl<TUserData> Sync for KademliaHandler<TUserData> where
    TUserData: Sync

impl<TUserData> Unpin for KademliaHandler<TUserData> where
    TUserData: Unpin

impl<TUserData> !UnwindSafe for KademliaHandler<TUserData>

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> Clear for T where
    T: InitializableFromZeroed + ?Sized

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

impl<T> InitializableFromZeroed for T where
    T: Default

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