Struct jenkins_api::action::GitBuildData[][src]

pub struct GitBuildData {
    pub scm_name: String,
    pub last_built_revision: Revision,
    pub remote_urls: Vec<String>,
    pub builds_by_branch_name: BuildsByBranch,
}

An action describing a Git change

Fields

Name of the SCM

Last revision that was built

URLs to the SCM

Builds and their branches

Trait Implementations

impl Debug for GitBuildData
[src]

Formats the value using the given formatter. Read more

impl Class for GitBuildData
[src]

Should reply the _class provided by Jenkins for a type

impl Action for GitBuildData
[src]

Auto Trait Implementations