pub struct NodeChurn {
pub added: Vec<String>,
pub removed: Vec<String>,
pub stable: Vec<String>,
pub added_count: usize,
pub removed_count: usize,
pub stable_count: usize,
}Expand description
Node churn analysis
Fields§
§added: Vec<String>Nodes added
removed: Vec<String>Nodes removed
stable: Vec<String>Stable nodes
added_count: usizeCount of added nodes
removed_count: usizeCount of removed nodes
stable_count: usizeCount of stable nodes
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NodeChurn
impl RefUnwindSafe for NodeChurn
impl Send for NodeChurn
impl Sync for NodeChurn
impl Unpin for NodeChurn
impl UnsafeUnpin for NodeChurn
impl UnwindSafe for NodeChurn
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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