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 more