Enum libp2p_kad::PutRecordContext
source · pub enum PutRecordContext {
Publish,
Republish,
Replicate,
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.
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