Struct ci_detective::docker::Docker [] [src]

pub struct Docker {
    pub source_branch: String,
    pub source_commit: String,
    pub commit_msg: String,
    pub repo: String,
    pub cache_tag: String,
    pub image_name: String,
    // some fields omitted
}

Fields

The name of the branch or the tag that is currently being tested.

The SHA1 hash of the commit being tested.

The message from the commit being tested and built.

The name of the Docker repository being built.

The Docker repository tag being built.

The name and tag of the Docker repository being built. (This variable is a combination of DOCKER_REPO:CACHE_TAG.)

Methods

impl Docker
[src]

[src]

Construct this provider's information from the environment.

Trait Implementations

impl Clone for Docker
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Docker
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Docker

impl Sync for Docker