[][src]Struct jenkins_api::nodes::computer::SlaveComputer

pub struct SlaveComputer {
    pub display_name: String,
    pub description: String,
    pub icon: String,
    pub icon_class_name: String,
    pub idle: bool,
    pub jnlp_agent: bool,
    pub launch_supported: bool,
    pub manual_launch_allowed: bool,
    pub num_executors: u32,
    pub offline: bool,
    pub offline_cause: Option<CommonMonitorData>,
    pub offline_cause_reason: Option<String>,
    pub temporarily_offline: bool,
    pub monitor_data: HashMap<String, Data>,
    pub executors: Vec<Executor>,
    pub one_off_executors: Vec<Executor>,
    pub assigned_labels: Vec<AssignedLabel>,
}

A slave computer

Fields

display_name: String

Name of the computer

description: String

Description of the computer

icon: String

Icon for the computer

icon_class_name: String

Icon for the computer

idle: bool

Is the computer idle

jnlp_agent: bool

Is the computer connected to master through JNLP

launch_supported: bool

Can the computer launch a Job

manual_launch_allowed: bool

Can a user launch a Job on this computer

num_executors: u32

Numbero of executors

offline: bool

Is the computer offline

offline_cause: Option<CommonMonitorData>

Why is the computer offline

offline_cause_reason: Option<String>

Why is the computer offline

temporarily_offline: bool

Is the computer temporarily offline

monitor_data: HashMap<String, Data>

Monitor data provided by the computer

executors: Vec<Executor>

Executors of the computer

one_off_executors: Vec<Executor>

One off executors of the computer

assigned_labels: Vec<AssignedLabel>

Labels assigned to the computer

Trait Implementations

impl Class for SlaveComputer[src]

impl Computer for SlaveComputer[src]

impl Debug for SlaveComputer[src]

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

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