pub struct ComplexityThresholdOverrides {
pub max_cyclomatic: Option<u16>,
pub max_cognitive: Option<u16>,
pub max_crap: Option<f64>,
}Expand description
Health threshold overrides accepted by the programmatic API.
Fields§
§max_cyclomatic: Option<u16>Override for the cyclomatic complexity threshold.
max_cognitive: Option<u16>Override for the cognitive complexity threshold.
max_crap: Option<f64>Override for the CRAP score threshold.
Trait Implementations§
Source§impl Clone for ComplexityThresholdOverrides
impl Clone for ComplexityThresholdOverrides
impl Copy for ComplexityThresholdOverrides
Source§impl Debug for ComplexityThresholdOverrides
impl Debug for ComplexityThresholdOverrides
impl StructuralPartialEq for ComplexityThresholdOverrides
Auto Trait Implementations§
impl Freeze for ComplexityThresholdOverrides
impl RefUnwindSafe for ComplexityThresholdOverrides
impl Send for ComplexityThresholdOverrides
impl Sync for ComplexityThresholdOverrides
impl Unpin for ComplexityThresholdOverrides
impl UnsafeUnpin for ComplexityThresholdOverrides
impl UnwindSafe for ComplexityThresholdOverrides
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§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