Struct k8s_openapi::v1_11::api::extensions::v1beta1::DaemonSetUpdateStrategy[][src]

pub struct DaemonSetUpdateStrategy {
    pub rolling_update: Option<RollingUpdateDaemonSet>,
    pub type_: Option<String>,
}

Fields

Rolling update config params. Present only if type = "RollingUpdate".

Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is OnDelete.

Trait Implementations

impl Clone for DaemonSetUpdateStrategy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DaemonSetUpdateStrategy
[src]

Formats the value using the given formatter. Read more

impl Default for DaemonSetUpdateStrategy
[src]

Returns the "default value" for a type. Read more

impl PartialEq for DaemonSetUpdateStrategy
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for DaemonSetUpdateStrategy
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations