pub enum SyncVersionStatus {
Valid,
TooOld,
NotEnabled,
}Expand description
Result of checking if a sync version is still valid.
Variants§
Valid
The sync version is valid and incremental sync can proceed.
TooOld
The sync version is too old; a full re-sync is required.
NotEnabled
Change tracking is not enabled or the table doesn’t exist.
Implementations§
Source§impl SyncVersionStatus
impl SyncVersionStatus
Trait Implementations§
Source§impl Clone for SyncVersionStatus
impl Clone for SyncVersionStatus
Source§fn clone(&self) -> SyncVersionStatus
fn clone(&self) -> SyncVersionStatus
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 SyncVersionStatus
impl Debug for SyncVersionStatus
Source§impl PartialEq for SyncVersionStatus
impl PartialEq for SyncVersionStatus
impl Copy for SyncVersionStatus
impl Eq for SyncVersionStatus
impl StructuralPartialEq for SyncVersionStatus
Auto Trait Implementations§
impl Freeze for SyncVersionStatus
impl RefUnwindSafe for SyncVersionStatus
impl Send for SyncVersionStatus
impl Sync for SyncVersionStatus
impl Unpin for SyncVersionStatus
impl UnwindSafe for SyncVersionStatus
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.