Enum libp2p_kad::QueryInfo [−][src]
pub enum QueryInfo { Bootstrap { peer: PeerId, remaining: Option<IntoIter<Key<PeerId>>>, }, GetClosestPeers { key: Vec<u8>, }, GetProviders { key: Key, providers: HashSet<PeerId>, }, AddProvider { key: Key, phase: AddProviderPhase, context: AddProviderContext, }, PutRecord { record: Record, quorum: NonZeroUsize, phase: PutRecordPhase, context: PutRecordContext, }, GetRecord { key: Key, records: Vec<PeerRecord>, quorum: NonZeroUsize, cache_at: Option<Key<PeerId>>, }, }
Information about a running query.
Variants
A query initiated by Kademlia::bootstrap
.
Show fields
Fields of Bootstrap
A query initiated by Kademlia::get_closest_peers
.
A query initiated by Kademlia::get_providers
.
Show fields
A (repeated) query initiated by Kademlia::start_providing
.
Show fields
Fields of AddProvider
key: Key
The record key.
phase: AddProviderPhase
The current phase of the query.
context: AddProviderContext
The execution context of the query.
A (repeated) query initiated by Kademlia::put_record
.
Show fields
Fields of PutRecord
record: Record
quorum: NonZeroUsize
The expected quorum of responses w.r.t. the replication factor.
phase: PutRecordPhase
The current phase of the query.
context: PutRecordContext
The execution context of the query.
A query initiated by Kademlia::get_record
.
Show fields
Fields of GetRecord
key: Key
The key to look for.
records: Vec<PeerRecord>
The records with the id of the peer that returned them. None
when
the record was found in the local store.
quorum: NonZeroUsize
The number of records to look for.
cache_at: Option<Key<PeerId>>
The closest peer to key
that did not return a record.
When a record is found in a standard Kademlia query (quorum == 1), it is cached at this peer as soon as a record is found.