Struct libp2p_kad::handler::KademliaHandlerProto
source · [−]pub struct KademliaHandlerProto<T> { /* private fields */ }
Expand description
A prototype from which KademliaHandler
s can be constructed.
Implementations
sourceimpl<T> KademliaHandlerProto<T>
impl<T> KademliaHandlerProto<T>
pub fn new(config: KademliaHandlerConfig) -> Self
Trait Implementations
sourceimpl<T: Clone + Send + 'static> IntoProtocolsHandler for KademliaHandlerProto<T>
impl<T: Clone + Send + 'static> IntoProtocolsHandler for KademliaHandlerProto<T>
type Handler = KademliaHandler<T>
type Handler = KademliaHandler<T>
The protocols handler.
sourcefn into_handler(self, _: &PeerId, endpoint: &ConnectedPoint) -> Self::Handler
fn into_handler(self, _: &PeerId, endpoint: &ConnectedPoint) -> Self::Handler
Builds the protocols handler. Read more
sourcefn inbound_protocol(
&self
) -> <Self::Handler as ProtocolsHandler>::InboundProtocol
fn inbound_protocol(
&self
) -> <Self::Handler as ProtocolsHandler>::InboundProtocol
Return the handler’s inbound protocol.
sourcefn select<TProto2>(
self,
other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2>
fn select<TProto2>(
self,
other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2>
Builds an implementation of IntoProtocolsHandler
that handles both this protocol and the
other one together. Read more
sourcefn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self>
fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self>
Creates a builder that will allow creating a NodeHandler
that handles this protocol
exclusively. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for KademliaHandlerProto<T> where
T: RefUnwindSafe,
impl<T> Send for KademliaHandlerProto<T> where
T: Send,
impl<T> Sync for KademliaHandlerProto<T> where
T: Sync,
impl<T> Unpin for KademliaHandlerProto<T> where
T: Unpin,
impl<T> UnwindSafe for KademliaHandlerProto<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more