pub struct Exemption {
pub path: String,
pub rules: Vec<Rule>,
pub reason: String,
}Expand description
One auditable per-file exemption — a [[<language>.exempt]] entry.
The opposite of a silent ignore-glob: an exemption is declared in the one config file, names the rules it lifts, and must say why. Empty (comment-only) files need no entry — they carry no logic and are not subjects — so this is for deliberate omissions the tool can’t infer (a launcher shim, generated code, a re-export barrel).
Fields§
§path: StringPath to the exempt file, relative to the scanned root.
rules: Vec<Rule>Which rules the exemption lifts (colocated-test, coverage).
reason: StringWhy the omission is deliberate — required, and never empty.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Exemption
impl<'de> Deserialize<'de> for Exemption
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Exemption
impl StructuralPartialEq for Exemption
Auto Trait Implementations§
impl Freeze for Exemption
impl RefUnwindSafe for Exemption
impl Send for Exemption
impl Sync for Exemption
impl Unpin for Exemption
impl UnsafeUnpin for Exemption
impl UnwindSafe for Exemption
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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