[−][src]Enum libp2p_kad::KademliaEvent
The events produced by the Kademlia
behaviour.
See [Kademlia::poll
].
Variants
BootstrapResult(BootstrapResult)
The result of Kademlia::bootstrap
.
GetClosestPeersResult(GetClosestPeersResult)
The result of Kademlia::get_closest_peers
.
GetProvidersResult(GetProvidersResult)
The result of Kademlia::get_providers
.
StartProvidingResult(AddProviderResult)
The result of Kademlia::start_providing
.
RepublishProviderResult(AddProviderResult)
The result of a (automatic) republishing of a provider record.
GetRecordResult(GetRecordResult)
The result of Kademlia::get_record
.
PutRecordResult(PutRecordResult)
The result of Kademlia::put_record
.
RepublishRecordResult(PutRecordResult)
The result of a (automatic) republishing of a (value-)record.
A peer has been discovered during a query.
Fields of Discovered
peer_id: PeerId
The ID of the discovered peer.
addresses: Vec<Multiaddr>
The known addresses of the discovered peer.
ty: KadConnectionType
The connection status reported by the discovered peer towards the local peer.
The routing table has been updated.
Fields of RoutingUpdated
A peer has connected for whom no listen address is known.
If the peer is to be added to the local node's routing table, a known
listen address for the peer must be provided via Kademlia::add_address
.
Fields of UnroutablePeer
peer: PeerId
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for KademliaEvent
impl Send for KademliaEvent
impl Sync for KademliaEvent
impl Unpin for KademliaEvent
impl UnwindSafe for KademliaEvent
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> 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>,