pub enum ProviderStatus {
Disconnected,
Idle,
PopulateNamespace,
PopulateMetadata,
PopulateContent,
SyncIncremental,
SyncFull,
ConnectivityLost,
Terminated,
Error,
}
Expand description
Sync provider status.
Variants§
Disconnected
The sync provider is disconnected.
Idle
The sync provider is idle.
PopulateNamespace
The sync provider is populating a namespace.
PopulateMetadata
The sync provider is populating placeholder metadata.
PopulateContent
The sync provider is incrementally syncing placeholder content.
SyncIncremental
The sync provider is incrementally syncing placeholder content.
SyncFull
The sync provider has fully synced placeholder data.
ConnectivityLost
The sync provider has lost connectivity.
Terminated
The sync provider has been terminated.
Error
The sync provider had an error.
Trait Implementations§
Source§impl Clone for ProviderStatus
impl Clone for ProviderStatus
Source§fn clone(&self) -> ProviderStatus
fn clone(&self) -> ProviderStatus
Returns a copy 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 ProviderStatus
impl Debug for ProviderStatus
Source§impl From<CF_SYNC_PROVIDER_STATUS> for ProviderStatus
impl From<CF_SYNC_PROVIDER_STATUS> for ProviderStatus
Source§impl From<ProviderStatus> for CF_SYNC_PROVIDER_STATUS
impl From<ProviderStatus> for CF_SYNC_PROVIDER_STATUS
Source§fn from(status: ProviderStatus) -> Self
fn from(status: ProviderStatus) -> Self
Converts to this type from the input type.
impl Copy for ProviderStatus
Auto Trait Implementations§
impl Freeze for ProviderStatus
impl RefUnwindSafe for ProviderStatus
impl Send for ProviderStatus
impl Sync for ProviderStatus
impl Unpin for ProviderStatus
impl UnwindSafe for ProviderStatus
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