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