pub struct SyncStats {
pub sync_count: u64,
pub error_count: u64,
pub last_sync: Option<Instant>,
pub rate_limiter_stats: Option<RateLimitStats>,
pub reconnect_attempts: u32,
}Fields§
§sync_count: u64§error_count: u64§last_sync: Option<Instant>§rate_limiter_stats: Option<RateLimitStats>§reconnect_attempts: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncStats
impl RefUnwindSafe for SyncStats
impl Send for SyncStats
impl Sync for SyncStats
impl Unpin for SyncStats
impl UnwindSafe for SyncStats
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