pub struct ConsistencyReport {
pub nodes_checked: usize,
pub inconsistencies: usize,
pub suspicious_nodes: Vec<PeerId>,
pub validated_at: Instant,
}
Expand description
Routing table consistency report
Fields§
§nodes_checked: usize
Number of nodes checked
inconsistencies: usize
Number of inconsistencies found
suspicious_nodes: Vec<PeerId>
Suspicious nodes
validated_at: Instant
Validation timestamp
Trait Implementations§
Source§impl Clone for ConsistencyReport
impl Clone for ConsistencyReport
Source§fn clone(&self) -> ConsistencyReport
fn clone(&self) -> ConsistencyReport
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ConsistencyReport
impl RefUnwindSafe for ConsistencyReport
impl Send for ConsistencyReport
impl Sync for ConsistencyReport
impl Unpin for ConsistencyReport
impl UnwindSafe for ConsistencyReport
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