pub struct RuleHitStat {
pub rule_id: String,
pub total: u32,
pub emitted: u32,
pub suppressed: u32,
pub info: u32,
pub warn: u32,
pub error: u32,
}Fields§
§rule_id: String§total: u32§emitted: u32§suppressed: u32§info: u32§warn: u32§error: u32Trait Implementations§
Source§impl Clone for RuleHitStat
impl Clone for RuleHitStat
Source§fn clone(&self) -> RuleHitStat
fn clone(&self) -> RuleHitStat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RuleHitStat
impl Debug for RuleHitStat
Source§impl PartialEq for RuleHitStat
impl PartialEq for RuleHitStat
impl Eq for RuleHitStat
impl StructuralPartialEq for RuleHitStat
Auto Trait Implementations§
impl Freeze for RuleHitStat
impl RefUnwindSafe for RuleHitStat
impl Send for RuleHitStat
impl Sync for RuleHitStat
impl Unpin for RuleHitStat
impl UnsafeUnpin for RuleHitStat
impl UnwindSafe for RuleHitStat
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