Struct git_checks::DiffInfo [] [src]

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

The mode of the file in the parent commit.

The blob object of the file in the parent commit.

The mode of the file in the current commit.

The blob object of the file in the current commit.

The name of the file in the current commit.

The status mode of the file.

Trait Implementations

impl Debug for DiffInfo
[src]

[src]

Formats the value using the given formatter.