pub struct SyncHealthReport {
pub overlay_edges: usize,
pub tombstoned_edges: usize,
pub tombstoned_nodes: usize,
}Expand description
Sync health JSON payload.
Fields§
§overlay_edges: usizeOverlay edge insertions currently buffered.
tombstoned_edges: usizeTombstoned base edges.
tombstoned_nodes: usizeTombstoned nodes.
Implementations§
Trait Implementations§
Source§impl Clone for SyncHealthReport
impl Clone for SyncHealthReport
Source§fn clone(&self) -> SyncHealthReport
fn clone(&self) -> SyncHealthReport
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 SyncHealthReport
Source§impl Debug for SyncHealthReport
impl Debug for SyncHealthReport
impl Eq for SyncHealthReport
Source§impl From<SyncHealth> for SyncHealthReport
impl From<SyncHealth> for SyncHealthReport
Source§fn from(health: SyncHealth) -> Self
fn from(health: SyncHealth) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SyncHealthReport
impl PartialEq for SyncHealthReport
Source§fn eq(&self, other: &SyncHealthReport) -> bool
fn eq(&self, other: &SyncHealthReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SyncHealthReport
Auto Trait Implementations§
impl Freeze for SyncHealthReport
impl RefUnwindSafe for SyncHealthReport
impl Send for SyncHealthReport
impl Sync for SyncHealthReport
impl Unpin for SyncHealthReport
impl UnsafeUnpin for SyncHealthReport
impl UnwindSafe for SyncHealthReport
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