pub struct TopicDiscoveryConfig { /* private fields */ }Implementations§
Source§impl TopicDiscoveryConfig
impl TopicDiscoveryConfig
pub fn builder(endpoint: Endpoint) -> ConfigBuilder
pub fn announce_interval(&self) -> Duration
pub fn discovery_interval(&self) -> Duration
pub fn discovery_interval_no_peers(&self) -> Duration
pub fn connection_timeout(&self) -> Duration
pub fn retry_interval(&self) -> Duration
pub fn max_peers_per_round(&self) -> Option<usize>
pub fn dht_retries(&self) -> Option<usize>
Trait Implementations§
Source§impl Clone for TopicDiscoveryConfig
impl Clone for TopicDiscoveryConfig
Source§fn clone(&self) -> TopicDiscoveryConfig
fn clone(&self) -> TopicDiscoveryConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for TopicDiscoveryConfig
impl !UnwindSafe for TopicDiscoveryConfig
impl Freeze for TopicDiscoveryConfig
impl Send for TopicDiscoveryConfig
impl Sync for TopicDiscoveryConfig
impl Unpin for TopicDiscoveryConfig
impl UnsafeUnpin for TopicDiscoveryConfig
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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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