Struct nomad_client::models::deployment_state::DeploymentState[][src]

pub struct DeploymentState {
    pub placed_canaries: Option<Vec<String>>,
    pub auto_revert: Option<bool>,
    pub progress_deadline: Option<i64>,
    pub require_progress_by: Option<String>,
    pub promoted: Option<bool>,
    pub desired_canaries: Option<i32>,
    pub desired_total: Option<i32>,
    pub placed_allocs: Option<i32>,
    pub healthy_allocs: Option<i32>,
    pub unhealthy_allocs: Option<i32>,
}

Fields

placed_canaries: Option<Vec<String>>auto_revert: Option<bool>progress_deadline: Option<i64>require_progress_by: Option<String>promoted: Option<bool>desired_canaries: Option<i32>desired_total: Option<i32>placed_allocs: Option<i32>healthy_allocs: Option<i32>unhealthy_allocs: Option<i32>

Implementations

impl DeploymentState[src]

Trait Implementations

impl Clone for DeploymentState[src]

impl Debug for DeploymentState[src]

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

impl PartialEq<DeploymentState> for DeploymentState[src]

impl Serialize for DeploymentState[src]

impl StructuralPartialEq for DeploymentState[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> Instrument 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.