pub struct SyncStatistics {
pub events_sent: usize,
pub events_received: usize,
pub events_applied: usize,
pub events_ignored: usize,
pub conflicts_detected: usize,
pub conflicts_resolved: usize,
pub manual_resolutions_required: usize,
}Expand description
Statistics about synchronization operations.
Fields§
§events_sent: usizeNumber of events sent.
events_received: usizeNumber of events received.
events_applied: usizeNumber of events applied.
events_ignored: usizeNumber of events ignored.
conflicts_detected: usizeNumber of conflicts detected.
conflicts_resolved: usizeNumber of conflicts resolved automatically.
manual_resolutions_required: usizeNumber of manual resolutions required.
Trait Implementations§
Source§impl Clone for SyncStatistics
impl Clone for SyncStatistics
Source§fn clone(&self) -> SyncStatistics
fn clone(&self) -> SyncStatistics
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 SyncStatistics
impl Debug for SyncStatistics
Source§impl Default for SyncStatistics
impl Default for SyncStatistics
Source§fn default() -> SyncStatistics
fn default() -> SyncStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SyncStatistics
impl<'de> Deserialize<'de> for SyncStatistics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SyncStatistics
impl RefUnwindSafe for SyncStatistics
impl Send for SyncStatistics
impl Sync for SyncStatistics
impl Unpin for SyncStatistics
impl UnwindSafe for SyncStatistics
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