struct WorkspaceDefaultConfigData {Show 49 fields
cargo_allTargets: bool,
cargo_autoreload: bool,
cargo_buildScripts_enable: bool,
cargo_buildScripts_invocationStrategy: InvocationStrategy,
cargo_buildScripts_overrideCommand: Option<Vec<String>>,
cargo_buildScripts_rebuildOnSave: bool,
cargo_buildScripts_useRustcWrapper: bool,
cargo_cfgs: Vec<String>,
cargo_extraArgs: Vec<String>,
cargo_extraEnv: FxHashMap<String, Option<String>>,
cargo_features: CargoFeaturesDef,
cargo_noDefaultFeatures: bool,
cargo_noDeps: bool,
cargo_sysroot: Option<String>,
cargo_sysrootSrc: Option<String>,
cargo_target: Option<String>,
cargo_targetDir: Option<TargetDirectory>,
cfg_setTest: bool,
checkOnSave: bool,
check_allTargets: Option<bool>,
check_command: String,
check_extraArgs: Vec<String>,
check_extraEnv: FxHashMap<String, Option<String>>,
check_features: Option<CargoFeaturesDef>,
check_ignore: FxHashSet<String>,
check_invocationStrategy: InvocationStrategy,
check_noDefaultFeatures: Option<bool>,
check_overrideCommand: Option<Vec<String>>,
check_targets: Option<CheckOnSaveTargets>,
check_workspace: bool,
document_symbol_search_excludeLocals: bool,
procMacro_ignored: FxHashMap<Box<str>, Box<[Box<str>]>>,
runnables_bench_command: String,
runnables_bench_overrideCommand: Option<Vec<String>>,
runnables_command: Option<String>,
runnables_doctest_overrideCommand: Option<Vec<String>>,
runnables_extraArgs: Vec<String>,
runnables_extraTestBinaryArgs: Vec<String>,
runnables_test_command: String,
runnables_test_overrideCommand: Option<Vec<String>>,
rustc_source: Option<String>,
rustfmt_extraArgs: Vec<String>,
rustfmt_overrideCommand: Option<Vec<String>>,
rustfmt_rangeFormatting_enable: bool,
vfs_extraIncludes: Vec<String>,
workspace_symbol_search_excludeImports: bool,
workspace_symbol_search_kind: WorkspaceSymbolSearchKindDef,
workspace_symbol_search_limit: usize,
workspace_symbol_search_scope: WorkspaceSymbolSearchScopeDef,
}Expand description
Default config values for this grouping.
Fields§
§cargo_allTargets: bool§cargo_autoreload: bool§cargo_buildScripts_enable: bool§cargo_buildScripts_invocationStrategy: InvocationStrategy§cargo_buildScripts_overrideCommand: Option<Vec<String>>§cargo_buildScripts_rebuildOnSave: bool§cargo_buildScripts_useRustcWrapper: bool§cargo_cfgs: Vec<String>§cargo_extraArgs: Vec<String>§cargo_extraEnv: FxHashMap<String, Option<String>>§cargo_features: CargoFeaturesDef§cargo_noDefaultFeatures: bool§cargo_noDeps: bool§cargo_sysroot: Option<String>§cargo_sysrootSrc: Option<String>§cargo_target: Option<String>§cargo_targetDir: Option<TargetDirectory>§cfg_setTest: bool§checkOnSave: bool§check_allTargets: Option<bool>§check_command: String§check_extraArgs: Vec<String>§check_extraEnv: FxHashMap<String, Option<String>>§check_features: Option<CargoFeaturesDef>§check_ignore: FxHashSet<String>§check_invocationStrategy: InvocationStrategy§check_noDefaultFeatures: Option<bool>§check_overrideCommand: Option<Vec<String>>§check_targets: Option<CheckOnSaveTargets>§check_workspace: bool§document_symbol_search_excludeLocals: bool§procMacro_ignored: FxHashMap<Box<str>, Box<[Box<str>]>>§runnables_bench_command: String§runnables_bench_overrideCommand: Option<Vec<String>>§runnables_command: Option<String>§runnables_doctest_overrideCommand: Option<Vec<String>>§runnables_extraArgs: Vec<String>§runnables_extraTestBinaryArgs: Vec<String>§runnables_test_command: String§runnables_test_overrideCommand: Option<Vec<String>>§rustc_source: Option<String>§rustfmt_extraArgs: Vec<String>§rustfmt_overrideCommand: Option<Vec<String>>§rustfmt_rangeFormatting_enable: bool§vfs_extraIncludes: Vec<String>§workspace_symbol_search_excludeImports: bool§workspace_symbol_search_kind: WorkspaceSymbolSearchKindDef§workspace_symbol_search_limit: usize§workspace_symbol_search_scope: WorkspaceSymbolSearchScopeDefTrait Implementations§
Source§impl Clone for WorkspaceDefaultConfigData
impl Clone for WorkspaceDefaultConfigData
Source§fn clone(&self) -> WorkspaceDefaultConfigData
fn clone(&self) -> WorkspaceDefaultConfigData
Returns a duplicate 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 WorkspaceDefaultConfigData
impl Debug for WorkspaceDefaultConfigData
Auto Trait Implementations§
impl Freeze for WorkspaceDefaultConfigData
impl RefUnwindSafe for WorkspaceDefaultConfigData
impl Send for WorkspaceDefaultConfigData
impl Sync for WorkspaceDefaultConfigData
impl Unpin for WorkspaceDefaultConfigData
impl UnwindSafe for WorkspaceDefaultConfigData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more