pub struct Finding {
pub check: Check,
pub severity: Severity,
pub target: String,
pub message: String,
}Expand description
One row in the report.
target is opaque to the renderer — it’s the string the human / agent
reads to know which repo / workspace / config path the finding is about.
By convention: a bare name ("api", "acme"), a "<repo> / <agent>"
pair, or a config-file path.
Fields§
§check: Check§severity: Severity§target: String§message: StringTrait Implementations§
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