Struct ra_ap_project_model::CargoConfig
source · pub struct CargoConfig {Show 14 fields
pub features: CargoFeatures,
pub target: Option<String>,
pub sysroot: Option<RustLibSource>,
pub sysroot_query_metadata: bool,
pub sysroot_src: Option<AbsPathBuf>,
pub rustc_source: Option<RustLibSource>,
pub cfg_overrides: CfgOverrides,
pub wrap_rustc_in_build_scripts: bool,
pub run_build_script_command: Option<Vec<String>>,
pub extra_args: Vec<String>,
pub extra_env: FxHashMap<String, String>,
pub invocation_strategy: InvocationStrategy,
pub invocation_location: InvocationLocation,
pub target_dir: Option<PathBuf>,
}Fields§
§features: CargoFeaturesList of features to activate.
target: Option<String>rustc target
sysroot: Option<RustLibSource>Sysroot loading behavior
sysroot_query_metadata: boolWhether to invoke cargo metadata on the sysroot crate.
sysroot_src: Option<AbsPathBuf>§rustc_source: Option<RustLibSource>rustc private crate source
cfg_overrides: CfgOverrides§wrap_rustc_in_build_scripts: boolInvoke cargo check through the RUSTC_WRAPPER.
run_build_script_command: Option<Vec<String>>The command to run instead of cargo check for building build scripts.
extra_args: Vec<String>Extra args to pass to the cargo command.
extra_env: FxHashMap<String, String>Extra env vars to set when invoking the cargo command
invocation_strategy: InvocationStrategy§invocation_location: InvocationLocation§target_dir: Option<PathBuf>Optional path to use instead of target when building
Trait Implementations§
source§impl Clone for CargoConfig
impl Clone for CargoConfig
source§fn clone(&self) -> CargoConfig
fn clone(&self) -> CargoConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CargoConfig
impl Debug for CargoConfig
source§impl Default for CargoConfig
impl Default for CargoConfig
source§fn default() -> CargoConfig
fn default() -> CargoConfig
Returns the “default value” for a type. Read more
source§impl PartialEq for CargoConfig
impl PartialEq for CargoConfig
source§fn eq(&self, other: &CargoConfig) -> bool
fn eq(&self, other: &CargoConfig) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for CargoConfig
impl StructuralPartialEq for CargoConfig
Auto Trait Implementations§
impl RefUnwindSafe for CargoConfig
impl Send for CargoConfig
impl Sync for CargoConfig
impl Unpin for CargoConfig
impl UnwindSafe for CargoConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.