pub struct SyncStatus {
pub last_commit_seq: i64,
pub last_checkpoint: Option<String>,
pub convergent: bool,
pub disk: DiskStatus,
}Expand description
sync_status.
Fields§
§last_commit_seq: i64§last_checkpoint: Option<String>The latest checkpoint by ts.
convergent: boolunconverged == 0 && checked && no drift.
disk: DiskStatusImplementations§
Trait Implementations§
Source§impl Clone for SyncStatus
impl Clone for SyncStatus
Source§impl Debug for SyncStatus
impl Debug for SyncStatus
impl Eq for SyncStatus
Source§impl PartialEq for SyncStatus
impl PartialEq for SyncStatus
impl StructuralPartialEq for SyncStatus
Auto Trait Implementations§
impl Freeze for SyncStatus
impl RefUnwindSafe for SyncStatus
impl Send for SyncStatus
impl Sync for SyncStatus
impl Unpin for SyncStatus
impl UnsafeUnpin for SyncStatus
impl UnwindSafe for SyncStatus
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.