pub enum NodeStatus {
Good,
Questionable,
Bad,
}Expand description
Kademlia node liveness classification (BEP 5).
Variants§
Good
Node has responded or sent a query within the last 15 minutes.
Questionable
Node has not been active recently but has not failed repeatedly.
Bad
Node has failed 2 or more consecutive queries.
Trait Implementations§
Source§impl Clone for NodeStatus
impl Clone for NodeStatus
Source§fn clone(&self) -> NodeStatus
fn clone(&self) -> NodeStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NodeStatus
Source§impl Debug for NodeStatus
impl Debug for NodeStatus
impl Eq for NodeStatus
Source§impl PartialEq for NodeStatus
impl PartialEq for NodeStatus
Source§fn eq(&self, other: &NodeStatus) -> bool
fn eq(&self, other: &NodeStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodeStatus
Auto Trait Implementations§
impl Freeze for NodeStatus
impl RefUnwindSafe for NodeStatus
impl Send for NodeStatus
impl Sync for NodeStatus
impl Unpin for NodeStatus
impl UnsafeUnpin for NodeStatus
impl UnwindSafe for NodeStatus
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