Struct nomad_client::models::update_strategy::UpdateStrategy[][src]

pub struct UpdateStrategy {
    pub stagger: Option<i64>,
    pub max_parallel: Option<i32>,
    pub health_check: Option<String>,
    pub min_healthy_time: Option<i64>,
    pub healthy_deadline: Option<i64>,
    pub progress_deadline: Option<i64>,
    pub canary: Option<i32>,
    pub auto_revert: Option<bool>,
    pub auto_promote: Option<bool>,
}

Fields

stagger: Option<i64>max_parallel: Option<i32>health_check: Option<String>min_healthy_time: Option<i64>healthy_deadline: Option<i64>progress_deadline: Option<i64>canary: Option<i32>auto_revert: Option<bool>auto_promote: Option<bool>

Implementations

impl UpdateStrategy[src]

Trait Implementations

impl Clone for UpdateStrategy[src]

impl Debug for UpdateStrategy[src]

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

impl PartialEq<UpdateStrategy> for UpdateStrategy[src]

impl Serialize for UpdateStrategy[src]

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