pub enum SyncKind {
    Equal,
    Safe,
    Force,
    Unsafe,
}Expand description
Enumerates the kind set after synchronization was attempted.
Variants§
Equal
Local and remote are equal.
Safe
Safe synchronization was made.
Force
Forced synchronization was performed.
Unsafe
Synchronization is not safe and a forceful attempt is required.
Trait Implementations§
source§impl<'de> Deserialize<'de> for SyncKind
 
impl<'de> Deserialize<'de> for SyncKind
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
Auto Trait Implementations§
impl RefUnwindSafe for SyncKind
impl Send for SyncKind
impl Sync for SyncKind
impl Unpin for SyncKind
impl UnwindSafe for SyncKind
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