Enum libp2p_kad::KademliaCaching
source · [−]pub enum KademliaCaching {
Disabled,
Enabled {
max_peers: u16,
},
}
Expand description
The configuration for Kademlia “write-back” caching after successful
lookups via Kademlia::get_record
.
Variants
Disabled
Caching is disabled and the peers closest to records being looked up
that do not return a record are not tracked, i.e.
GetRecordOk::cache_candidates
is always empty.
Enabled
Fields
max_peers: u16
Up to max_peers
peers not returning a record that are closest to the key
being looked up are tracked and returned in GetRecordOk::cache_candidates
.
Furthermore, if Kademlia::get_record
is used with a quorum of 1, the
found record is automatically sent to (i.e. cached at) these peers. For lookups with a
quorum > 1, the write-back operation must be performed explicitly, if
desired and after choosing a record from the results, via Kademlia::put_record_to
.
Trait Implementations
sourceimpl Clone for KademliaCaching
impl Clone for KademliaCaching
sourcefn clone(&self) -> KademliaCaching
fn clone(&self) -> KademliaCaching
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for KademliaCaching
impl Send for KademliaCaching
impl Sync for KademliaCaching
impl Unpin for KademliaCaching
impl UnwindSafe for KademliaCaching
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more