[][src]Struct git_checks_core::DiffInfo

pub struct DiffInfo {
    pub old_mode: String,
    pub old_blob: CommitId,
    pub new_mode: String,
    pub new_blob: CommitId,
    pub name: FileName,
    pub status: StatusChange,
}

Information about a file that changed in a commit.

Fields

old_mode: String

The mode of the file in the parent commit.

old_blob: CommitId

The blob object of the file in the parent commit.

new_mode: String

The mode of the file in the current commit.

new_blob: CommitId

The blob object of the file in the current commit.

name: FileName

The name of the file in the current commit.

status: StatusChange

The status mode of the file.

Trait Implementations

impl Debug for DiffInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]