[][src]Enum jenkins_api::nodes::computer::Executor

pub enum Executor {
    Executor {
        current_executable: Option<ShortBuild>,
        likely_stuck: bool,
        number: u32,
        progress: ExecutorProgress,
    },
    MissingData {},
}

An Executor of a Computer

Variants

Executor

An Executor of a Computer

Fields of Executor

current_executable: Option<ShortBuild>

Build that is currently running. Will be None if the executor is idle, or if it is building a job the current user doesn't have permissions to see

likely_stuck: bool

Is it likely stuck

number: u32

Executor number

progress: ExecutorProgress

Progress in current executable

MissingData

No data was retrieved about current executor, probably due to not enough depth in request

Fields of MissingData

Trait Implementations

impl Clone for Executor[src]

impl Debug for Executor[src]

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

impl Serialize for Executor[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.