Skip to main content

CheckConfig

Struct CheckConfig 

Source
pub struct CheckConfig {
Show 25 fields pub max_depth: usize, pub else_chain_threshold: usize, pub max_params: usize, pub forbid_attributes: PatternCheck, pub forbid_types: PatternCheck, pub forbid_calls: PatternCheck, pub forbid_macros: PatternCheck, pub check_naming: NamingCheck, pub check_nested_if: bool, pub check_if_in_match: bool, pub check_nested_match: bool, pub check_match_in_if: bool, pub check_else_chain: bool, pub forbid_else: bool, pub forbid_unsafe: bool, pub check_dyn_return: bool, pub check_dyn_param: bool, pub check_vec_box_dyn: bool, pub check_dyn_field: bool, pub check_clone_in_loop: bool, pub check_default_hasher: bool, pub check_mixed_concerns: bool, pub check_inline_tests: bool, pub check_let_underscore_result: bool, pub check_high_param_count: bool,
}
Expand description

Configuration controlling which checks are enabled and their thresholds.

Fields§

§max_depth: usize

Maximum allowed nesting depth.

§else_chain_threshold: usize

Minimum branches to trigger else-chain.

§max_params: usize

Maximum parameter count before high-param-count fires.

§forbid_attributes: PatternCheck

Banned attribute patterns.

§forbid_types: PatternCheck

Banned type patterns.

§forbid_calls: PatternCheck

Banned method call patterns.

§forbid_macros: PatternCheck

Banned macro patterns.

§check_naming: NamingCheck

Generic naming check configuration.

§check_nested_if: bool

Flag if inside if.

§check_if_in_match: bool

Flag if inside match arm.

§check_nested_match: bool

Flag match inside match.

§check_match_in_if: bool

Flag match inside if branch.

§check_else_chain: bool

Flag long if/else if chains.

§forbid_else: bool

Flag any use of the else keyword.

§forbid_unsafe: bool

Flag any unsafe block.

§check_dyn_return: bool

Flag dynamic dispatch in return types.

§check_dyn_param: bool

Flag dynamic dispatch in function parameters.

§check_vec_box_dyn: bool

Flag Vec<Box<dyn T>>.

§check_dyn_field: bool

Flag dynamic dispatch in struct fields.

§check_clone_in_loop: bool

Flag .clone() inside loop bodies.

§check_default_hasher: bool

Flag HashMap/HashSet with default hasher.

§check_mixed_concerns: bool

Flag disconnected type groups in a single file.

§check_inline_tests: bool

Flag #[cfg(test)] mod blocks in source files.

§check_let_underscore_result: bool

Flag let _ = expr that discards a Result.

§check_high_param_count: bool

Flag functions with too many parameters.

Implementations§

Source§

impl CheckConfig

Source

pub fn from_config_file(fc: &ConfigFile) -> Self

Build from a ConfigFile, copying all fields.

Source

pub fn merge_bool_overrides(&mut self, ovr: &PathOverride)

Apply Option<bool> overrides from a PathOverride.

Source§

impl CheckConfig

Source

pub fn resolve_for_path<'a>( &'a self, file_path: &str, file_config: Option<&ConfigFile>, ) -> Option<Cow<'a, Self>>

Returns the effective config for a file path.

Borrows self when no overrides match (zero clones). Clones and mutates only when a path override applies. Returns None when the override disables analysis for this path.

Trait Implementations§

Source§

impl Clone for CheckConfig

Source§

fn clone(&self) -> CheckConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for CheckConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for CheckConfig

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T, R> CollectAndApply<T, R> for T

Source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

Source§

type Output = R

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoBox<dyn Any> for T
where T: Any,

Source§

fn into_box(self) -> Box<dyn Any>

Convert self into the appropriate boxed form.
Source§

impl<T> IntoBox<dyn Any + Send> for T
where T: Any + Send,

Source§

fn into_box(self) -> Box<dyn Any + Send>

Convert self into the appropriate boxed form.
Source§

impl<T> IntoBox<dyn Any + Send + Sync> for T
where T: Any + Send + Sync,

Source§

fn into_box(self) -> Box<dyn Any + Send + Sync>

Convert self into the appropriate boxed form.
Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<I, T, U> Upcast<I, U> for T
where U: UpcastFrom<I, T>,

Source§

fn upcast(self, interner: I) -> U

Source§

impl<I, T> UpcastFrom<I, T> for T

Source§

fn upcast_from(from: T, _tcx: I) -> T

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,