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