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
sourceimpl Clone for PutRecordContext
impl Clone for PutRecordContext
sourcefn clone(&self) -> PutRecordContext
fn clone(&self) -> PutRecordContext
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for PutRecordContext
impl Debug for PutRecordContext
sourceimpl PartialEq<PutRecordContext> for PutRecordContext
impl PartialEq<PutRecordContext> for PutRecordContext
sourcefn eq(&self, other: &PutRecordContext) -> bool
fn eq(&self, other: &PutRecordContext) -> bool
impl Copy for PutRecordContext
impl Eq for PutRecordContext
impl StructuralEq for PutRecordContext
impl StructuralPartialEq for PutRecordContext
Auto Trait Implementations
impl RefUnwindSafe for PutRecordContext
impl Send for PutRecordContext
impl Sync for PutRecordContext
impl Unpin for PutRecordContext
impl UnwindSafe for PutRecordContext
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more