Struct libp2p_kad::handler::KademliaHandlerProto
source · pub struct KademliaHandlerProto<T> { /* private fields */ }
Expand description
A prototype from which KademliaHandler
s can be constructed.
Implementations§
source§impl<T> KademliaHandlerProto<T>
impl<T> KademliaHandlerProto<T>
pub fn new(config: KademliaHandlerConfig) -> Self
Trait Implementations§
source§impl<T: Clone + Debug + Send + 'static + Unpin> IntoConnectionHandler for KademliaHandlerProto<T>
impl<T: Clone + Debug + Send + 'static + Unpin> IntoConnectionHandler for KademliaHandlerProto<T>
§type Handler = KademliaHandler<T>
type Handler = KademliaHandler<T>
The protocols handler.
source§fn into_handler(
self,
remote_peer_id: &PeerId,
endpoint: &ConnectedPoint
) -> Self::Handler
fn into_handler(
self,
remote_peer_id: &PeerId,
endpoint: &ConnectedPoint
) -> Self::Handler
Builds the protocols handler. Read more
source§fn inbound_protocol(
&self
) -> <Self::Handler as ConnectionHandler>::InboundProtocol
fn inbound_protocol(
&self
) -> <Self::Handler as ConnectionHandler>::InboundProtocol
Return the handler’s inbound protocol.
source§fn select<TProto2>(
self,
other: TProto2
) -> IntoConnectionHandlerSelect<Self, TProto2>where
Self: Sized,
fn select<TProto2>(
self,
other: TProto2
) -> IntoConnectionHandlerSelect<Self, TProto2>where
Self: Sized,
Builds an implementation of
IntoConnectionHandler
that handles both this protocol and the
other one together.