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

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

An Executor of a Computer

Variants

An Executor of a Computer

Fields of Executor

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

Is it likely stuck

Executor number

Progress in current executable

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

Fields of MissingData

Trait Implementations

impl Debug for Executor
[src]

Formats the value using the given formatter. Read more

impl Clone for Executor
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Executor

impl Sync for Executor