Struct bollard_stubs::models::TaskSpecContainerSpecConfigs[][src]

pub struct TaskSpecContainerSpecConfigs {
    pub file: Option<TaskSpecContainerSpecFile1>,
    pub runtime: Option<HashMap<(), ()>>,
    pub config_id: Option<String>,
    pub config_name: Option<String>,
}

Fields

file: Option<TaskSpecContainerSpecFile1>runtime: Option<HashMap<(), ()>>

Runtime represents a target that is not mounted into the container but is used by the task


> Note: Configs.File and Configs.Runtime are mutually > exclusive

config_id: Option<String>

ConfigID represents the ID of the specific config that we’re referencing.

config_name: Option<String>

ConfigName is the name of the config that this references, but this is just provided for lookup/display purposes. The config in the reference will be identified by its ID.

Trait Implementations

impl Clone for TaskSpecContainerSpecConfigs[src]

impl Debug for TaskSpecContainerSpecConfigs[src]

impl Default for TaskSpecContainerSpecConfigs[src]

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

impl PartialEq<TaskSpecContainerSpecConfigs> for TaskSpecContainerSpecConfigs[src]

impl Serialize for TaskSpecContainerSpecConfigs[src]

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