Enum libp2p_kad::PutRecordContext
source · pub enum PutRecordContext {
Publish,
Republish,
Replicate,
Cache,
Custom,
}
Expand description
The context of a QueryInfo::PutRecord
query.
Variants§
Publish
The context is a Kademlia::put_record
operation.
Republish
The context is periodic republishing of records stored
earlier via Kademlia::put_record
.
Replicate
The context is periodic replication (i.e. without extending the record TTL) of stored records received earlier from another peer.
Cache
The context is an automatic write-back caching operation of a
record found via Kademlia::get_record
at the closest node
to the key queried that did not return a record. This only
occurs after a lookup quorum of 1 as per standard Kademlia.
Custom
The context is a custom store operation targeting specific
peers initiated by Kademlia::put_record_to
.
Trait Implementations§
source§impl Clone for PutRecordContext
impl Clone for PutRecordContext
source§fn clone(&self) -> PutRecordContext
fn clone(&self) -> PutRecordContext
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more