pub enum SyncEvent {
FetchingRemoteIndex,
Merging,
PushingRemoteIndex,
VerifyingRemoteIndex,
Complete,
}
Expand description
Events emitted during a sync
operation.
Variants§
FetchingRemoteIndex
Indicates the remote index is being fetched.
Merging
Indicates that the remote index is being merged with the local index.
PushingRemoteIndex
Indicates that the remote index is being pushed to the network.
VerifyingRemoteIndex
Indicates that the remote index is being Verified.
Complete
Indicates that the sync
operation has completed successfully.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SyncEvent
impl<'de> Deserialize<'de> for SyncEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SyncEvent
impl StructuralPartialEq for SyncEvent
Auto Trait Implementations§
impl Freeze for SyncEvent
impl RefUnwindSafe for SyncEvent
impl Send for SyncEvent
impl Sync for SyncEvent
impl Unpin for SyncEvent
impl UnwindSafe for SyncEvent
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