Struct nomad_client::models::autopilot_configuration::AutopilotConfiguration[][src]

pub struct AutopilotConfiguration {
    pub cleanup_dead_servers: Option<bool>,
    pub last_contact_threshold: Option<i64>,
    pub max_trailing_logs: Option<i32>,
    pub min_quorum: Option<i64>,
    pub server_stabilization_time: Option<i64>,
    pub enable_redundancy_zones: Option<bool>,
    pub disable_upgrade_migration: Option<bool>,
    pub enable_custom_upgrades: Option<bool>,
    pub create_index: Option<i32>,
    pub modify_index: Option<i32>,
}

Fields

cleanup_dead_servers: Option<bool>last_contact_threshold: Option<i64>max_trailing_logs: Option<i32>min_quorum: Option<i64>server_stabilization_time: Option<i64>enable_redundancy_zones: Option<bool>disable_upgrade_migration: Option<bool>enable_custom_upgrades: Option<bool>create_index: Option<i32>modify_index: Option<i32>

Implementations

impl AutopilotConfiguration[src]

Trait Implementations

impl Clone for AutopilotConfiguration[src]

impl Debug for AutopilotConfiguration[src]

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

impl PartialEq<AutopilotConfiguration> for AutopilotConfiguration[src]

impl Serialize for AutopilotConfiguration[src]

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