Skip to main content

ModifiedFile

Struct ModifiedFile 

Source
pub struct ModifiedFile<'c> { /* private fields */ }
Expand description

A file that was touched in a commit

Implementations§

Source§

impl<'c> ModifiedFile<'c>

Source

pub fn new(diff: &'c Diff<'_>, n: usize) -> Self

Instantiate the modified file object from a git diff.

As a single diff can have > 1 modified/touched file, a single unsigned integer is provided to specify the delta and/or patch that this file looks to represent. Hence, the struct will normally be instantiated via iterating over the diff deltas as they are readily avaliable.

Source

pub fn old_path(&self) -> Option<&Path>

Return the path of the old file in the diff

Source

pub fn new_file(&self) -> Option<&Path>

Return the path of the new file in the diff

Source

pub fn status(&self) -> Option<Delta>

Return the file status of the given patch

Auto Trait Implementations§

§

impl<'c> !Freeze for ModifiedFile<'c>

§

impl<'c> RefUnwindSafe for ModifiedFile<'c>

§

impl<'c> !Send for ModifiedFile<'c>

§

impl<'c> !Sync for ModifiedFile<'c>

§

impl<'c> Unpin for ModifiedFile<'c>

§

impl<'c> UnsafeUnpin for ModifiedFile<'c>

§

impl<'c> UnwindSafe for ModifiedFile<'c>

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>,

Source§

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>,

Source§

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.