Skip to main content

CheckPlan

Struct CheckPlan 

Source
pub struct CheckPlan {
Show 14 fields pub base: String, pub head: String, pub scope: Scope, pub diff_context: u32, pub fail_on: FailOn, pub max_findings: usize, pub path_filters: Vec<String>, pub only_tags: Vec<String>, pub enable_tags: Vec<String>, pub disable_tags: Vec<String>, pub directory_overrides: Vec<DirectoryRuleOverride>, pub force_language: Option<String>, pub allowed_lines: Option<BTreeSet<(String, u32)>>, pub false_positive_fingerprints: BTreeSet<String>,
}

Fields§

§base: String§head: String§scope: Scope§diff_context: u32§fail_on: FailOn§max_findings: usize§path_filters: Vec<String>§only_tags: Vec<String>

Only include rules that have at least one of these tags. Empty means no filtering by this criterion.

§enable_tags: Vec<String>

Include rules that have at least one of these tags (additive). Empty means no filtering by this criterion.

§disable_tags: Vec<String>

Exclude rules that have any of these tags. Empty means no filtering by this criterion.

§directory_overrides: Vec<DirectoryRuleOverride>

Per-directory rule overrides loaded from .diffguard.toml files.

§force_language: Option<String>

Force all files to be treated as this language for preprocessing/rule filtering.

§allowed_lines: Option<BTreeSet<(String, u32)>>

Optional line-level allowlist (path, line) for secondary filtering. When set, only these diff lines are evaluated.

§false_positive_fingerprints: BTreeSet<String>

Finding fingerprints to treat as acknowledged false positives.

Trait Implementations§

Source§

impl Clone for CheckPlan

Source§

fn clone(&self) -> CheckPlan

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 CheckPlan

Source§

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

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

impl PartialEq for CheckPlan

Source§

fn eq(&self, other: &CheckPlan) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for CheckPlan

Source§

impl StructuralPartialEq for CheckPlan

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> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> 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.