[][src]Struct openshift_openapi::api::apps::v1::CustomDeploymentStrategyParams

pub struct CustomDeploymentStrategyParams {
    pub command: Option<Vec<String>>,
    pub environment: Option<Vec<EnvVar>>,
    pub image: Option<String>,
}

CustomDeploymentStrategyParams are the input to the Custom deployment strategy.

Fields

command: Option<Vec<String>>

Command is optional and overrides CMD in the container Image.

environment: Option<Vec<EnvVar>>

Environment holds the environment which will be given to the container for Image.

image: Option<String>

Image specifies a container image which can carry out a deployment.

Trait Implementations

impl Clone for CustomDeploymentStrategyParams[src]

impl Debug for CustomDeploymentStrategyParams[src]

impl Default for CustomDeploymentStrategyParams[src]

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

impl PartialEq<CustomDeploymentStrategyParams> for CustomDeploymentStrategyParams[src]

impl Serialize for CustomDeploymentStrategyParams[src]

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