Enum libp2p_kad::ConnectionType
source · pub enum ConnectionType {
NotConnected = 0,
Connected = 1,
CanConnect = 2,
CannotConnect = 3,
}
Expand description
Status of our connection to a node reported by the Kademlia protocol.
Variants§
NotConnected = 0
Sender hasn’t tried to connect to peer.
Connected = 1
Sender is currently connected to peer.
CanConnect = 2
Sender was recently connected to peer.
CannotConnect = 3
Sender tried to connect to peer but failed.
Trait Implementations§
source§impl Clone for ConnectionType
impl Clone for ConnectionType
source§fn clone(&self) -> ConnectionType
fn clone(&self) -> ConnectionType
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 ConnectionType
impl Debug for ConnectionType
source§impl Hash for ConnectionType
impl Hash for ConnectionType
source§impl PartialEq for ConnectionType
impl PartialEq for ConnectionType
source§fn eq(&self, other: &ConnectionType) -> bool
fn eq(&self, other: &ConnectionType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ConnectionType
impl Eq for ConnectionType
impl StructuralEq for ConnectionType
impl StructuralPartialEq for ConnectionType
Auto Trait Implementations§
impl RefUnwindSafe for ConnectionType
impl Send for ConnectionType
impl Sync for ConnectionType
impl Unpin for ConnectionType
impl UnwindSafe for ConnectionType
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