pub struct HookScanner { /* private fields */ }Implementations§
Source§impl HookScanner
impl HookScanner
Sourcepub fn with_skip_comments(self, skip: bool) -> Self
pub fn with_skip_comments(self, skip: bool) -> Self
Enables or disables comment skipping during scanning.
Sourcepub fn with_dynamic_rules(self, rules: Vec<DynamicRule>) -> Self
pub fn with_dynamic_rules(self, rules: Vec<DynamicRule>) -> Self
Adds dynamic rules loaded from custom YAML files.
Sourcepub fn with_strict_secrets(self, strict: bool) -> Self
pub fn with_strict_secrets(self, strict: bool) -> Self
Enables or disables strict secrets mode. When enabled, dummy key heuristics are disabled for test files.
Source§impl HookScanner
impl HookScanner
Trait Implementations§
Source§impl Default for HookScanner
impl Default for HookScanner
Auto Trait Implementations§
impl Freeze for HookScanner
impl RefUnwindSafe for HookScanner
impl Send for HookScanner
impl Sync for HookScanner
impl Unpin for HookScanner
impl UnwindSafe for HookScanner
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