pub struct ResolvedOverride {
pub matchers: Vec<GlobMatcher>,
pub rules: PartialRulesConfig,
}Expand description
Resolved override with pre-compiled glob matchers.
Fields§
§matchers: Vec<GlobMatcher>Pre-compiled matchers for the entry’s files globs; the override
applies to a file when any matcher matches.
rules: PartialRulesConfigPartial severity map applied to matching files.
Trait Implementations§
Source§impl Clone for ResolvedOverride
impl Clone for ResolvedOverride
Auto Trait Implementations§
impl Freeze for ResolvedOverride
impl RefUnwindSafe for ResolvedOverride
impl Send for ResolvedOverride
impl Sync for ResolvedOverride
impl Unpin for ResolvedOverride
impl UnsafeUnpin for ResolvedOverride
impl UnwindSafe for ResolvedOverride
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