Enum ci_detective::CI [] [src]

pub enum CI {
    Jenkins(Jenkins),
    Travis(Travis),
    Docker(Docker),
    Codeship(Codeship),
    Codefresh(Codefresh),
    Circle(Circle),
    Appveyor(Appveyor),
    // some variants omitted
}

Grab the configuration from whatever CI you're on.

Variants

Jenkins CI

Travis CI

Docker

Codeship CI

Codefresh CI

Circle CI

Appveyor CI

Methods

impl CI
[src]

[src]

Grab the CI environment information

Trait Implementations

impl Clone for CI
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CI
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for CI

impl Sync for CI