pub enum GitChangeKind {
Modified,
Added,
Deleted,
Renamed {
from: PathBuf,
},
Untracked,
Conflicted,
}Variants§
Trait Implementations§
Source§impl Clone for GitChangeKind
impl Clone for GitChangeKind
Source§fn clone(&self) -> GitChangeKind
fn clone(&self) -> GitChangeKind
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 moreSource§impl Debug for GitChangeKind
impl Debug for GitChangeKind
impl Eq for GitChangeKind
Source§impl PartialEq for GitChangeKind
impl PartialEq for GitChangeKind
impl StructuralPartialEq for GitChangeKind
Auto Trait Implementations§
impl Freeze for GitChangeKind
impl RefUnwindSafe for GitChangeKind
impl Send for GitChangeKind
impl Sync for GitChangeKind
impl Unpin for GitChangeKind
impl UnsafeUnpin for GitChangeKind
impl UnwindSafe for GitChangeKind
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