[][src]Struct libp2p::kad::protocol::KademliaProtocolConfig

pub struct KademliaProtocolConfig { /* fields omitted */ }

Configuration for a Kademlia connection upgrade. When applied to a connection, turns this connection into a Stream + Sink whose items are of type KadRequestMsg and KadResponseMsg.

Methods

impl KademliaProtocolConfig[src]

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

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

Trait Implementations

impl<C> InboundUpgrade<C> for KademliaProtocolConfig where
    C: AsyncRead + AsyncWrite
[src]

type Output = AndThen<With<FromErr<Framed<Negotiated<C>, UviBytes<Vec<u8>>>, Error>, KadResponseMsg, fn(KadResponseMsg) -> Result<Vec<u8>, Error>, Result<Vec<u8>, Error>>, fn(BytesMut) -> Result<KadRequestMsg, Error>, Result<KadRequestMsg, Error>>

Output after the upgrade has been successfully negotiated and the handshake performed.

type Future = FutureResult<<KademliaProtocolConfig as InboundUpgrade<C>>::Output, Error>

Future that performs the handshake with the remote.

type Error = Error

Possible error during the handshake.

impl Default for KademliaProtocolConfig[src]

impl Clone for KademliaProtocolConfig[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<C> OutboundUpgrade<C> for KademliaProtocolConfig where
    C: AsyncRead + AsyncWrite
[src]

type Output = AndThen<With<FromErr<Framed<Negotiated<C>, UviBytes<Vec<u8>>>, Error>, KadRequestMsg, fn(KadRequestMsg) -> Result<Vec<u8>, Error>, Result<Vec<u8>, Error>>, fn(BytesMut) -> Result<KadResponseMsg, Error>, Result<KadResponseMsg, Error>>

Output after the upgrade has been successfully negotiated and the handshake performed.

type Future = FutureResult<<KademliaProtocolConfig as OutboundUpgrade<C>>::Output, Error>

Future that performs the handshake with the remote.

type Error = Error

Possible error during the handshake.

impl UpgradeInfo for KademliaProtocolConfig[src]

type Info = Cow<'static, [u8]>

Opaque type representing a negotiable protocol.

type InfoIter = Once<<KademliaProtocolConfig as UpgradeInfo>::Info>

Iterator returned by protocol_info.

impl Debug for KademliaProtocolConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> InitializableFromZeroed for T where
    T: Default

impl<C, U> InboundUpgradeExt<C> for U where
    U: InboundUpgrade<C>, 
[src]

fn map_inbound<F, T>(self, f: F) -> MapInboundUpgrade<Self, F> where
    F: FnOnce(Self::Output) -> T, 
[src]

Returns a new object that wraps around Self and applies a closure to the Output.

fn map_inbound_err<F, T>(self, f: F) -> MapInboundUpgradeErr<Self, F> where
    F: FnOnce(Self::Error) -> T, 
[src]

Returns a new object that wraps around Self and applies a closure to the Error.

impl<C, U> OutboundUpgradeExt<C> for U where
    U: OutboundUpgrade<C>, 
[src]

fn map_outbound<F, T>(self, f: F) -> MapOutboundUpgrade<Self, F> where
    F: FnOnce(Self::Output) -> T, 
[src]

Returns a new object that wraps around Self and applies a closure to the Output.

fn map_outbound_err<F, T>(self, f: F) -> MapOutboundUpgradeErr<Self, F> where
    F: FnOnce(Self::Error) -> T, 
[src]

Returns a new object that wraps around Self and applies a closure to the Error.

impl<T> Erased for T

impl<T> Erased for T