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 + Debug + Send + 'static> IntoConnectionHandler for KademliaHandlerProto<T>
impl<T: Clone + Debug + Send + 'static> IntoConnectionHandler for KademliaHandlerProto<T>
type Handler = KademliaHandler<T>
type Handler = KademliaHandler<T>
The protocols handler.
sourcefn 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
sourcefn inbound_protocol(
&self
) -> <Self::Handler as ConnectionHandler>::InboundProtocol
fn inbound_protocol(
&self
) -> <Self::Handler as ConnectionHandler>::InboundProtocol
Return the handler’s inbound protocol.
sourcefn select<TProto2>(
self,
other: TProto2
) -> IntoConnectionHandlerSelect<Self, TProto2>
fn select<TProto2>(
self,
other: TProto2
) -> IntoConnectionHandlerSelect<Self, TProto2>
Builds an implementation of
IntoConnectionHandler
that handles both this protocol and the
other one together. Read moreAuto 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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more