Struct git2::DiffFile[][src]

pub struct DiffFile<'a> { /* fields omitted */ }

Description of one side of a delta.

Although this is called a "file" it could represent a file, a symbolic link, a submodule commit id, or even a tree (although that only happens if you are tracking type changes or ignored/untracked directories).

Methods

impl<'a> DiffFile<'a>
[src]

Returns the Oid of this item.

If this entry represents an absent side of a diff (e.g. the old_file of a Added delta), then the oid returned will be zeroes.

Returns the path, in bytes, of the entry relative to the working directory of the repository.

Returns the path of the entry relative to the working directory of the repository.

Returns the size of this entry, in bytes

Auto Trait Implementations

impl<'a> !Send for DiffFile<'a>

impl<'a> !Sync for DiffFile<'a>