[][src]Struct jenkins_api::home::Home

pub struct Home {
    pub mode: Mode,
    pub node_description: String,
    pub node_name: String,
    pub num_executors: u32,
    pub description: Option<String>,
    pub jobs: Vec<ShortJob>,
    pub quieting_down: bool,
    pub slave_agent_port: AgentPort,
    pub use_crumbs: bool,
    pub use_security: bool,
    pub views: Vec<ShortView>,
}

Index of Jenkins, with details about the master, a list of Job and a list of View

Fields

mode: Mode

Mode of the node for job selections

node_description: String

Description of the node

node_name: String

Name of the node

num_executors: u32

Number of executors of the node

description: Option<String>

Description of the master

jobs: Vec<ShortJob>

List of jobs

quieting_down: bool

Is Jenkins preparing to restart

slave_agent_port: AgentPort

HTTP port to the slave agent

use_crumbs: bool

Does this instance use crumbs for CSRF

use_security: bool

False if this instance is either UNSECURED or NO_AUTHENTICATION

views: Vec<ShortView>

List of views

Trait Implementations

impl Debug for Home[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Home

impl Send for Home

impl Sync for Home

impl Unpin for Home

impl UnwindSafe for Home

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.