[][src]Struct libp2p::kad::handler::KademliaHandler

pub struct KademliaHandler<TSubstream, TUserData> where
    TSubstream: AsyncRead + AsyncWrite + Unpin
{ /* 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.

Methods

impl<TSubstream, TUserData> KademliaHandler<TSubstream, TUserData> where
    TSubstream: AsyncRead + AsyncWrite + Unpin
[src]

pub fn dial_only() -> KademliaHandler<TSubstream, TUserData>[src]

Create a KademliaHandler that only allows sending messages to the remote but denying incoming connections.

pub fn dial_and_listen() -> KademliaHandler<TSubstream, TUserData>[src]

Create a KademliaHandler that only allows sending messages but also receive incoming requests.

The Default trait implementation wraps around this function.

pub fn with_protocol_name(
    self,
    name: impl Into<Cow<'static, [u8]>>
) -> KademliaHandler<TSubstream, TUserData>
[src]

Modifies the protocol name used on the wire. Can be used to create incompatibilities between networks on purpose.

Trait Implementations

impl<TSubstream, TUserData> Default for KademliaHandler<TSubstream, TUserData> where
    TSubstream: AsyncRead + AsyncWrite + Unpin
[src]

impl<TSubstream, TUserData> ProtocolsHandler for KademliaHandler<TSubstream, TUserData> where
    TSubstream: AsyncRead + AsyncWrite + Unpin,
    TUserData: Clone
[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 Substream = TSubstream

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

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<TSubstream, TUserData> !RefUnwindSafe for KademliaHandler<TSubstream, TUserData>

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

impl<TSubstream, TUserData> !Sync for KademliaHandler<TSubstream, TUserData>

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

impl<TSubstream, TUserData> !UnwindSafe for KademliaHandler<TSubstream, 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>,