pub struct SyncStatusSnapshot {
pub outbox: usize,
pub upgrading: bool,
pub lease_state: Option<LeaseState>,
pub schema_floor: Option<SchemaFloor>,
pub sync_needed: bool,
}Fields§
§outbox: usize§upgrading: bool§lease_state: Option<LeaseState>§schema_floor: Option<SchemaFloor>§sync_needed: boolTrait Implementations§
Source§impl Clone for SyncStatusSnapshot
impl Clone for SyncStatusSnapshot
Source§fn clone(&self) -> SyncStatusSnapshot
fn clone(&self) -> SyncStatusSnapshot
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 moreSource§impl Debug for SyncStatusSnapshot
impl Debug for SyncStatusSnapshot
Auto Trait Implementations§
impl Freeze for SyncStatusSnapshot
impl RefUnwindSafe for SyncStatusSnapshot
impl Send for SyncStatusSnapshot
impl Sync for SyncStatusSnapshot
impl Unpin for SyncStatusSnapshot
impl UnsafeUnpin for SyncStatusSnapshot
impl UnwindSafe for SyncStatusSnapshot
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