struct LocalDefaultConfigData {Show 36 fields
assist_emitMustUse: bool,
assist_expressionFillDefault: ExprFillDefaultDef,
assist_preferSelf: bool,
assist_termSearch_borrowcheck: bool,
assist_termSearch_fuel: usize,
completion_addSemicolonToUnit: bool,
completion_autoAwait_enable: bool,
completion_autoIter_enable: bool,
completion_autoimport_enable: bool,
completion_autoimport_exclude: Vec<AutoImportExclusion>,
completion_autoself_enable: bool,
completion_callable_snippets: CallableCompletionDef,
completion_excludeTraits: Vec<String>,
completion_fullFunctionSignatures_enable: bool,
completion_hideDeprecated: bool,
completion_limit: Option<usize>,
completion_postfix_enable: bool,
completion_privateEditable_enable: bool,
completion_termSearch_enable: bool,
completion_termSearch_fuel: usize,
diagnostics_disabled: FxHashSet<String>,
diagnostics_enable: bool,
diagnostics_experimental_enable: bool,
diagnostics_remapPrefix: FxHashMap<String, String>,
diagnostics_styleLints_enable: bool,
diagnostics_warningsAsHint: Vec<String>,
diagnostics_warningsAsInfo: Vec<String>,
imports_granularity_enforce: bool,
imports_granularity_group: ImportGranularityDef,
imports_group_enable: bool,
imports_merge_glob: bool,
imports_preferNoStd: bool,
imports_preferPrelude: bool,
imports_prefix: ImportPrefixDef,
imports_prefixExternPrelude: bool,
rename_showConflicts: bool,
}Expand description
Default config values for this grouping.
Fields§
§assist_emitMustUse: bool§assist_expressionFillDefault: ExprFillDefaultDef§assist_preferSelf: bool§assist_termSearch_borrowcheck: bool§assist_termSearch_fuel: usize§completion_addSemicolonToUnit: bool§completion_autoAwait_enable: bool§completion_autoIter_enable: bool§completion_autoimport_enable: bool§completion_autoimport_exclude: Vec<AutoImportExclusion>§completion_autoself_enable: bool§completion_callable_snippets: CallableCompletionDef§completion_excludeTraits: Vec<String>§completion_fullFunctionSignatures_enable: bool§completion_hideDeprecated: bool§completion_limit: Option<usize>§completion_postfix_enable: bool§completion_privateEditable_enable: bool§completion_termSearch_enable: bool§completion_termSearch_fuel: usize§diagnostics_disabled: FxHashSet<String>§diagnostics_enable: bool§diagnostics_experimental_enable: bool§diagnostics_remapPrefix: FxHashMap<String, String>§diagnostics_styleLints_enable: bool§diagnostics_warningsAsHint: Vec<String>§diagnostics_warningsAsInfo: Vec<String>§imports_granularity_enforce: bool§imports_granularity_group: ImportGranularityDef§imports_group_enable: bool§imports_merge_glob: bool§imports_preferNoStd: bool§imports_preferPrelude: bool§imports_prefix: ImportPrefixDef§imports_prefixExternPrelude: bool§rename_showConflicts: boolTrait Implementations§
Source§impl Clone for LocalDefaultConfigData
impl Clone for LocalDefaultConfigData
Source§fn clone(&self) -> LocalDefaultConfigData
fn clone(&self) -> LocalDefaultConfigData
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 LocalDefaultConfigData
impl Debug for LocalDefaultConfigData
Auto Trait Implementations§
impl Freeze for LocalDefaultConfigData
impl RefUnwindSafe for LocalDefaultConfigData
impl Send for LocalDefaultConfigData
impl Sync for LocalDefaultConfigData
impl Unpin for LocalDefaultConfigData
impl UnwindSafe for LocalDefaultConfigData
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