Enum libp2p::swarm::DialPeerCondition
source · [−]#[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
sourceimpl Clone for DialPeerCondition
impl Clone for DialPeerCondition
sourcepub fn clone(&self) -> DialPeerCondition
pub fn clone(&self) -> DialPeerCondition
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
sourceimpl Debug for DialPeerCondition
impl Debug for DialPeerCondition
sourceimpl Default for DialPeerCondition
impl Default for DialPeerCondition
sourcepub fn default() -> DialPeerCondition
pub fn default() -> DialPeerCondition
Returns the “default value” for a type. Read more
impl Copy for DialPeerCondition
Auto Trait Implementations
impl RefUnwindSafe for DialPeerCondition
impl Send for DialPeerCondition
impl Sync for DialPeerCondition
impl Unpin for DialPeerCondition
impl UnwindSafe for DialPeerCondition
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