pub struct KnownPeersManagerConfig {
pub enable_known_peers_source: bool,
pub cache_size: u32,
pub ignore_peer_list: HashSet<PeerId>,
pub path: Option<Box<Path>>,
pub failed_address_cache_removal_interval: Duration,
pub failed_address_kademlia_removal_interval: Duration,
pub stale_known_peers_timeout: Duration,
}
Expand description
Configuration for KnownPeersManager
.
Fields§
§enable_known_peers_source: bool
Defines whether we return known peers in KnownPeersRegistry::all_known_peers()
cache_size: u32
Defines cache size.
ignore_peer_list: HashSet<PeerId>
Peer ID list to filter on address adding.
path: Option<Box<Path>>
Defines whether we enable cache persistence.
failed_address_cache_removal_interval: Duration
Defines interval before the next peer address removes entry from the cache.
failed_address_kademlia_removal_interval: Duration
Defines interval before the next peer address removal triggers PeerAddressRemovedEvent
.
stale_known_peers_timeout: Duration
Amount of time after which stored known peers contents is assumed to be stale.
Trait Implementations§
source§impl Clone for KnownPeersManagerConfig
impl Clone for KnownPeersManagerConfig
source§fn clone(&self) -> KnownPeersManagerConfig
fn clone(&self) -> KnownPeersManagerConfig
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 moresource§impl Debug for KnownPeersManagerConfig
impl Debug for KnownPeersManagerConfig
Auto Trait Implementations§
impl Freeze for KnownPeersManagerConfig
impl RefUnwindSafe for KnownPeersManagerConfig
impl Send for KnownPeersManagerConfig
impl Sync for KnownPeersManagerConfig
impl Unpin for KnownPeersManagerConfig
impl UnwindSafe for KnownPeersManagerConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more