pub enum KadConnectionType {
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 KadConnectionType
impl Clone for KadConnectionType
Source§fn clone(&self) -> KadConnectionType
fn clone(&self) -> KadConnectionType
Returns a duplicate 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 for KadConnectionType
impl PartialEq for KadConnectionType
impl Copy for KadConnectionType
impl Eq for KadConnectionType
impl StructuralPartialEq for KadConnectionType
Auto Trait Implementations§
impl Freeze for KadConnectionType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more