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

No changes

Entry does not exist in old version

Entry does not exist in new version

Entry content changed between old and new

Entry was renamed wbetween old and new

Entry was copied from another old entry

Entry is ignored item in workdir

Entry is untracked item in workdir

Type of entry changed between old and new

Entry is unreadable

Entry in the index is conflicted

Trait Implementations

impl Copy for Delta
[src]

impl Clone for Delta
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Delta
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Delta
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for Delta
[src]