pub enum WhichSide {
Unknown,
Neither,
RepoOnly,
ActualOnly,
Both,
}Expand description
Which side(s) of a copy-mode entry have changed since the last sync.
Variants§
Unknown
No fingerprint recorded yet — entry was never synced through dotling.
Neither
Neither side has changed since the last sync.
RepoOnly
Only the repo source file changed.
ActualOnly
Only the actual (local) target file changed.
Both
Both the repo source and the actual target changed.
Trait Implementations§
impl Copy for WhichSide
impl Eq for WhichSide
impl StructuralPartialEq for WhichSide
Auto Trait Implementations§
impl Freeze for WhichSide
impl RefUnwindSafe for WhichSide
impl Send for WhichSide
impl Sync for WhichSide
impl Unpin for WhichSide
impl UnsafeUnpin for WhichSide
impl UnwindSafe for WhichSide
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