#[non_exhaustive]pub enum DialPeerCondition {
Disconnected,
NotDialing,
Always,
}
Expand description
The available conditions under which a new dialing attempt to
a peer is initiated when requested by NetworkBehaviourAction::DialPeer
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Disconnected
A new dialing attempt is initiated only if the peer is currently considered disconnected, i.e. there is no established connection and no ongoing dialing attempt.
If there is an ongoing dialing attempt, the addresses reported by
NetworkBehaviour::addresses_of_peer
are added to the ongoing
dialing attempt, ignoring duplicates.
NotDialing
A new dialing attempt is initiated only if there is currently no ongoing dialing attempt, i.e. the peer is either considered disconnected or connected but without an ongoing dialing attempt.
If there is an ongoing dialing attempt, the addresses reported by
NetworkBehaviour::addresses_of_peer
are added to the ongoing
dialing attempt, ignoring duplicates.
Always
A new dialing attempt is always initiated, only subject to the configured connection limits.
Trait Implementations§
Source§impl Clone for DialPeerCondition
impl Clone for DialPeerCondition
Source§fn clone(&self) -> DialPeerCondition
fn clone(&self) -> DialPeerCondition
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DialPeerCondition
impl Debug for DialPeerCondition
Source§impl Default for DialPeerCondition
impl Default for DialPeerCondition
impl Copy for DialPeerCondition
Auto Trait Implementations§
impl Freeze for DialPeerCondition
impl RefUnwindSafe for DialPeerCondition
impl Send for DialPeerCondition
impl Sync for DialPeerCondition
impl Unpin for DialPeerCondition
impl UnwindSafe for DialPeerCondition
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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>
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