Struct jenkins_api::changeset::ChangeLogEntry[][src]

pub struct ChangeLogEntry {
    pub commit_id: Option<String>,
    pub msg: String,
    pub timestamp: i64,
    pub affected_paths: Option<Vec<String>>,
    pub author: ShortUser,
}

Changes found from a repo

Fields

ID of the commit

Commit message

Timestamp of the commit

Files changed in the commit

Author of the commit

Trait Implementations

impl Debug for ChangeLogEntry
[src]

Formats the value using the given formatter. Read more

impl Class for ChangeLogEntry
[src]

Should reply the _class provided by Jenkins for a type

impl ChangeSet for ChangeLogEntry
[src]

Auto Trait Implementations