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 From<ConnectionType> for KadConnectionType
impl From<ConnectionType> for KadConnectionType
source§fn from(raw: ConnectionType) -> KadConnectionType
fn from(raw: ConnectionType) -> KadConnectionType
Converts to this type from the input type.
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 ==
.impl Copy for KadConnectionType
impl Eq for KadConnectionType
impl StructuralEq for KadConnectionType
impl StructuralPartialEq for KadConnectionType
Auto Trait Implementations§
impl RefUnwindSafe for KadConnectionType
impl Send for KadConnectionType
impl Sync for KadConnectionType
impl Unpin for KadConnectionType
impl UnwindSafe for KadConnectionType
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