[][src]Struct cli::types::TaskCondition

pub struct TaskCondition {
    pub profiles: Option<Vec<String>>,
    pub platforms: Option<Vec<String>>,
    pub channels: Option<Vec<String>>,
    pub env_set: Option<Vec<String>>,
    pub env_not_set: Option<Vec<String>>,
    pub env: Option<IndexMap<String, String>>,
    pub env_true: Option<Vec<String>>,
    pub env_false: Option<Vec<String>>,
    pub rust_version: Option<RustVersionCondition>,
}

Holds condition attributes

Fields

profiles: Option<Vec<String>>

Profile names (development, ...)

platforms: Option<Vec<String>>

Platform names (linux, windows, mac)

channels: Option<Vec<String>>

Channel names (stable, beta, nightly)

env_set: Option<Vec<String>>

Environment variables which must be defined

env_not_set: Option<Vec<String>>

Environment variables which must not be defined

env: Option<IndexMap<String, String>>

Environment variables and their values

env_true: Option<Vec<String>>

Environment variables which are defined as true

env_false: Option<Vec<String>>

Environment variables which are defined as false

rust_version: Option<RustVersionCondition>

Rust version condition

Trait Implementations

impl Clone for TaskCondition[src]

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

Performs copy-assignment from source. Read more

impl Debug for TaskCondition[src]

impl Serialize for TaskCondition[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]