pub struct FlagCount {
pub flag: String,
pub count: usize,
pub nodes: Vec<String>,
}Expand description
One flag family and where it fired.
Fields§
§flag: StringFlag family name (e.g. LEAKAGE).
count: usizeHow many times it fired, duplicates included.
nodes: Vec<String>Node (or node/module.path) ids that raised it, sorted, deduped.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FlagCount
impl<'de> Deserialize<'de> for FlagCount
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 StructuralPartialEq for FlagCount
Auto Trait Implementations§
impl Freeze for FlagCount
impl RefUnwindSafe for FlagCount
impl Send for FlagCount
impl Sync for FlagCount
impl Unpin for FlagCount
impl UnsafeUnpin for FlagCount
impl UnwindSafe for FlagCount
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