pub enum WorktreeChangeKind {
Missing,
Modified,
Untracked,
UnsupportedPath,
}Expand description
Worktree change kind.
Variants§
Missing
A tracked snapshot file is missing from the worktree.
Modified
A tracked snapshot file exists but differs from the baseline bytes.
Untracked
A worktree file is not present in the snapshot baseline.
UnsupportedPath
A worktree path could not be safely represented as a Prikk repo path.
Implementations§
Trait Implementations§
Source§impl Clone for WorktreeChangeKind
impl Clone for WorktreeChangeKind
Source§fn clone(&self) -> WorktreeChangeKind
fn clone(&self) -> WorktreeChangeKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for WorktreeChangeKind
Source§impl Debug for WorktreeChangeKind
impl Debug for WorktreeChangeKind
impl Eq for WorktreeChangeKind
Source§impl PartialEq for WorktreeChangeKind
impl PartialEq for WorktreeChangeKind
impl StructuralPartialEq for WorktreeChangeKind
Auto Trait Implementations§
impl Freeze for WorktreeChangeKind
impl RefUnwindSafe for WorktreeChangeKind
impl Send for WorktreeChangeKind
impl Sync for WorktreeChangeKind
impl Unpin for WorktreeChangeKind
impl UnsafeUnpin for WorktreeChangeKind
impl UnwindSafe for WorktreeChangeKind
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