Struct git2::DiffFile

source ·
pub struct DiffFile<'a> { /* private fields */ }
Expand description

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).

Implementations§

source§

impl<'a> DiffFile<'a>

source

pub fn id(&self) -> Oid

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.

source

pub fn path_bytes(&self) -> Option<&'a [u8]>

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

source

pub fn path(&self) -> Option<&'a Path>

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

source

pub fn size(&self) -> u64

Returns the size of this entry, in bytes

source

pub fn is_binary(&self) -> bool

Returns true if file(s) are treated as binary data.

source

pub fn is_not_binary(&self) -> bool

Returns true if file(s) are treated as text data.

source

pub fn is_valid_id(&self) -> bool

Returns true if id value is known correct.

source

pub fn exists(&self) -> bool

Returns true if file exists at this side of the delta.

source

pub fn mode(&self) -> FileMode

Returns file mode.

Trait Implementations§

source§

impl<'a> Debug for DiffFile<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for DiffFile<'a>

§

impl<'a> RefUnwindSafe for DiffFile<'a>

§

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

§

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

§

impl<'a> Unpin for DiffFile<'a>

§

impl<'a> UnwindSafe for DiffFile<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.