[][src]Struct google_containeranalysis1_beta1::Command

pub struct Command {
    pub wait_for: Option<Vec<String>>,
    pub name: Option<String>,
    pub env: Option<Vec<String>>,
    pub args: Option<Vec<String>>,
    pub id: Option<String>,
    pub dir: Option<String>,
}

Command describes a step performed as part of the build pipeline.

This type is not used in any activity, and only used as part of another schema.

Fields

wait_for: Option<Vec<String>>

The ID(s) of the command(s) that this command depends on.

name: Option<String>

Required. Name of the command, as presented on the command line, or if the command is packaged as a Docker container, as presented to docker pull.

env: Option<Vec<String>>

Environment variables set before running this command.

args: Option<Vec<String>>

Command-line arguments used when executing this command.

id: Option<String>

Optional unique identifier for this command, used in wait_for to reference this command as a dependency.

dir: Option<String>

Working directory (relative to project source root) used when running this command.

Trait Implementations

impl Part for Command[src]

impl Default for Command[src]

impl Clone for Command[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Command[src]

impl Serialize for Command[src]

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

Auto Trait Implementations

impl Send for Command

impl Unpin for Command

impl Sync for Command

impl UnwindSafe for Command

impl RefUnwindSafe for Command

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]