[][src]Struct openshift_openapi::api::build::v1::DockerStrategyOptions

pub struct DockerStrategyOptions {
    pub build_args: Option<Vec<EnvVar>>,
    pub no_cache: Option<bool>,
}

DockerStrategyOptions contains extra strategy options for container image builds

Fields

build_args: Option<Vec<EnvVar>>

Args contains any build arguments that are to be passed to Docker. See https://docs.docker.com/engine/reference/builder/#/arg for more details

no_cache: Option<bool>

noCache overrides the docker-strategy noCache option in the build config

Trait Implementations

impl Clone for DockerStrategyOptions[src]

impl Debug for DockerStrategyOptions[src]

impl Default for DockerStrategyOptions[src]

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

impl PartialEq<DockerStrategyOptions> for DockerStrategyOptions[src]

impl Serialize for DockerStrategyOptions[src]

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