[][src]Enum jenkins_api::job::BallColor

pub enum BallColor {
    Blue,
    BlueAnime,
    Yellow,
    YellowAnime,
    Red,
    RedAnime,
    Grey,
    GreyAnime,
    Disabled,
    DisabledAnime,
    Aborted,
    AbortedAnime,
    NotBuilt,
    NotBuiltAnime,
}

Ball Color corresponding to a BuildStatus

Variants

Blue

Success

BlueAnime

Success, and build is on-going

Yellow

Unstable

YellowAnime

Unstable, and build is on-going

Red

Failure

RedAnime

Failure, and build is on-going

Grey

Catch-all for disabled, aborted, not yet build

GreyAnime

Catch-all for disabled, aborted, not yet build, and build is on-going

Disabled

Disabled

DisabledAnime

Disabled, and build is on-going

Aborted

Aborted

AbortedAnime

Aborted, and build is on-going

NotBuilt

Not Build

NotBuiltAnime

Not Build, and build is on-going

Trait Implementations

impl Clone for BallColor[src]

impl Copy for BallColor[src]

impl Debug for BallColor[src]

impl<'de> Deserialize<'de> for BallColor[src]

impl Serialize for BallColor[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.