pub struct Evaluation {
pub findings: Vec<Finding>,
pub counts: VerdictCounts,
pub truncated_findings: u32,
pub files_scanned: u32,
pub lines_scanned: u32,
pub rule_hits: Vec<RuleHitStat>,
}Fields§
§findings: Vec<Finding>§counts: VerdictCounts§truncated_findings: u32§files_scanned: u32§lines_scanned: u32§rule_hits: Vec<RuleHitStat>Aggregated per-rule hit counts (deterministically sorted by rule ID).
Trait Implementations§
Source§impl Clone for Evaluation
impl Clone for Evaluation
Source§fn clone(&self) -> Evaluation
fn clone(&self) -> Evaluation
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 Evaluation
impl Debug for Evaluation
Source§impl PartialEq for Evaluation
impl PartialEq for Evaluation
impl Eq for Evaluation
impl StructuralPartialEq for Evaluation
Auto Trait Implementations§
impl Freeze for Evaluation
impl RefUnwindSafe for Evaluation
impl Send for Evaluation
impl Sync for Evaluation
impl Unpin for Evaluation
impl UnsafeUnpin for Evaluation
impl UnwindSafe for Evaluation
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