pub struct Finding {
pub token: String,
pub level: RiskLevel,
pub description: String,
pub kind: FindingKind,
}Expand description
A single audited permission: the token, the resolved risk level, a description, and where the classification came from.
Fields§
§token: StringThe exact manifest token that produced this finding.
level: RiskLevelThe risk level assigned.
description: StringPlain-English description of what the grant allows.
kind: FindingKindThe classification provenance.
Trait Implementations§
impl Eq for Finding
impl StructuralPartialEq for Finding
Auto Trait Implementations§
impl Freeze for Finding
impl RefUnwindSafe for Finding
impl Send for Finding
impl Sync for Finding
impl Unpin for Finding
impl UnsafeUnpin for Finding
impl UnwindSafe for Finding
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