[][src]Struct ra_ap_project_model::CargoConfig

pub struct CargoConfig {
    pub no_default_features: bool,
    pub all_features: bool,
    pub features: Vec<String>,
    pub load_out_dirs_from_check: bool,
    pub target: Option<String>,
}

Fields

no_default_features: bool

Do not activate the default feature.

all_features: bool

Activate all available features

features: Vec<String>

List of features to activate. This will be ignored if cargo_all_features is true.

load_out_dirs_from_check: bool

Runs cargo check on launch to figure out the correct values of OUT_DIR

target: Option<String>

rustc target

Trait Implementations

impl Clone for CargoConfig[src]

impl Debug for CargoConfig[src]

impl Default for CargoConfig[src]

impl Eq for CargoConfig[src]

impl PartialEq<CargoConfig> for CargoConfig[src]

impl StructuralEq for CargoConfig[src]

impl StructuralPartialEq for CargoConfig[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[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.