[−][src]Struct libp2p_kad::handler::KademliaHandler
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.
Implementations
impl<TUserData> KademliaHandler<TUserData>
[src]
pub fn new(config: KademliaHandlerConfig) -> Self
[src]
Create a KademliaHandler
using the given configuration.
Trait Implementations
impl<TUserData> Default for KademliaHandler<TUserData>
[src]
impl<TUserData> ProtocolsHandler for KademliaHandler<TUserData> where
TUserData: Clone + Send + 'static,
[src]
TUserData: Clone + Send + 'static,
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 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
.
type InboundOpenInfo = ()
The type of additional information returned from listen_protocol
.
fn listen_protocol(
&self
) -> SubstreamProtocol<Self::InboundProtocol, Self::InboundOpenInfo>
[src]
&self
) -> SubstreamProtocol<Self::InboundProtocol, Self::InboundOpenInfo>
fn inject_fully_negotiated_outbound(
&mut self,
protocol: <Self::OutboundProtocol as OutboundUpgrade<NegotiatedSubstream>>::Output,
(msg, user_data): Self::OutboundOpenInfo
)
[src]
&mut self,
protocol: <Self::OutboundProtocol as OutboundUpgrade<NegotiatedSubstream>>::Output,
(msg, user_data): Self::OutboundOpenInfo
)
fn inject_fully_negotiated_inbound(
&mut self,
protocol: <Self::InboundProtocol as InboundUpgrade<NegotiatedSubstream>>::Output,
(): Self::InboundOpenInfo
)
[src]
&mut self,
protocol: <Self::InboundProtocol as InboundUpgrade<NegotiatedSubstream>>::Output,
(): Self::InboundOpenInfo
)
fn inject_event(&mut self, message: KademliaHandlerIn<TUserData>)
[src]
fn inject_dial_upgrade_error(
&mut self,
(_, user_data): Self::OutboundOpenInfo,
error: ProtocolsHandlerUpgrErr<Error>
)
[src]
&mut self,
(_, user_data): Self::OutboundOpenInfo,
error: ProtocolsHandlerUpgrErr<Error>
)
fn connection_keep_alive(&self) -> KeepAlive
[src]
fn poll(
&mut self,
cx: &mut Context<'_>
) -> Poll<ProtocolsHandlerEvent<Self::OutboundProtocol, Self::OutboundOpenInfo, Self::OutEvent, Self::Error>>
[src]
&mut self,
cx: &mut Context<'_>
) -> Poll<ProtocolsHandlerEvent<Self::OutboundProtocol, Self::OutboundOpenInfo, Self::OutEvent, Self::Error>>
fn inject_address_change(&mut self, _new_address: &Multiaddr)
[src]
fn inject_listen_upgrade_error(
&mut self,
Self::InboundOpenInfo,
ProtocolsHandlerUpgrErr<<Self::InboundProtocol as InboundUpgradeSend>::Error>
)
[src]
&mut self,
Self::InboundOpenInfo,
ProtocolsHandlerUpgrErr<<Self::InboundProtocol as InboundUpgradeSend>::Error>
)
fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap> where
TMap: Fn(&TNewIn) -> Option<&Self::InEvent>,
[src]
TMap: Fn(&TNewIn) -> Option<&Self::InEvent>,
fn map_out_event<TMap, TNewOut>(self, map: TMap) -> MapOutEvent<Self, TMap> where
TMap: FnMut(Self::OutEvent) -> TNewOut,
[src]
TMap: FnMut(Self::OutEvent) -> TNewOut,
fn select<TProto2>(
self,
other: TProto2
) -> ProtocolsHandlerSelect<Self, TProto2>
[src]
self,
other: TProto2
) -> ProtocolsHandlerSelect<Self, TProto2>
fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self>
[src]
Auto Trait Implementations
impl<TUserData> !RefUnwindSafe for KademliaHandler<TUserData>
impl<TUserData> Send for KademliaHandler<TUserData> where
TUserData: Send,
TUserData: Send,
impl<TUserData> Sync for KademliaHandler<TUserData> where
TUserData: Sync,
TUserData: Sync,
impl<TUserData> Unpin for KademliaHandler<TUserData> where
TUserData: Unpin,
TUserData: Unpin,
impl<TUserData> !UnwindSafe for KademliaHandler<TUserData>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoProtocolsHandler for T where
T: ProtocolsHandler,
[src]
T: ProtocolsHandler,
type Handler = T
The protocols handler.
fn into_handler(self, &PeerId, &ConnectedPoint) -> T
[src]
fn inbound_protocol(
&self
) -> <<T as IntoProtocolsHandler>::Handler as ProtocolsHandler>::InboundProtocol
[src]
&self
) -> <<T as IntoProtocolsHandler>::Handler as ProtocolsHandler>::InboundProtocol
fn select<TProto2>(
self,
other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2>
[src]
self,
other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2>
fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self>
[src]
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,