Struct jenkins_api::changeset::GitChangeSet[][src]

pub struct GitChangeSet {
    pub comment: String,
    pub author_email: String,
    pub commit_id: String,
    pub date: String,
    pub msg: String,
    pub timestamp: u64,
    pub id: String,
    pub affected_paths: Vec<String>,
    pub author: ShortUser,
    pub paths: Vec<PathChange>,
}

Changes found from git

Fields

Comment

Email of the commit

ID of the commit

Date of the commit

Commit message

Timestamp of the commit

ID of the commit

Files changed in the commit

Author of the commit

Files changed in the commit, and how

Trait Implementations

impl Debug for GitChangeSet
[src]

Formats the value using the given formatter. Read more

impl Class for GitChangeSet
[src]

Should reply the _class provided by Jenkins for a type

impl ChangeSet for GitChangeSet
[src]

Auto Trait Implementations