Enum git2::Delta
[−]
[src]
pub enum Delta {
Unmodified,
Added,
Deleted,
Modified,
Renamed,
Copied,
Ignored,
Untracked,
Typechange,
Unreadable,
Conflicted,
}What type of change is described by a DiffDelta?
Variants
UnmodifiedNo changes
AddedEntry does not exist in old version
DeletedEntry does not exist in new version
ModifiedEntry content changed between old and new
RenamedEntry was renamed wbetween old and new
CopiedEntry was copied from another old entry
IgnoredEntry is ignored item in workdir
UntrackedEntry is untracked item in workdir
TypechangeType of entry changed between old and new
UnreadableEntry is unreadable
ConflictedEntry in the index is conflicted
Trait Implementations
impl Debug for Delta[src]
impl Clone for Delta[src]
fn clone(&self) -> Delta
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more