pub enum ExplorerGitChangeKind {
Added,
Modified,
Deleted,
Renamed,
Copied,
Untracked,
Unknown,
}Expand description
Kind of change reported by git status --porcelain.
Variants§
Added
Newly added.
Modified
Modified content.
Deleted
Deleted.
Renamed
Renamed.
Copied
Copied.
Untracked
Untracked (only in unstaged).
Unknown
Unknown status character.
Trait Implementations§
Source§impl Clone for ExplorerGitChangeKind
impl Clone for ExplorerGitChangeKind
Source§fn clone(&self) -> ExplorerGitChangeKind
fn clone(&self) -> ExplorerGitChangeKind
Returns a duplicate of the value. Read more
1.0.0 · 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 ExplorerGitChangeKind
impl Debug for ExplorerGitChangeKind
Source§impl PartialEq for ExplorerGitChangeKind
impl PartialEq for ExplorerGitChangeKind
Source§impl Serialize for ExplorerGitChangeKind
impl Serialize for ExplorerGitChangeKind
impl Copy for ExplorerGitChangeKind
impl Eq for ExplorerGitChangeKind
impl StructuralPartialEq for ExplorerGitChangeKind
Auto Trait Implementations§
impl Freeze for ExplorerGitChangeKind
impl RefUnwindSafe for ExplorerGitChangeKind
impl Send for ExplorerGitChangeKind
impl Sync for ExplorerGitChangeKind
impl Unpin for ExplorerGitChangeKind
impl UnwindSafe for ExplorerGitChangeKind
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