pub struct TriageHit {
pub entry: u64,
pub verdict: Verdict,
pub vuln_sim: f64,
pub vuln_name: String,
pub patched_sim: f64,
pub patched_name: String,
pub coverage: f32,
}Fields§
§entry: u64§verdict: Verdict§vuln_sim: f64§vuln_name: String§patched_sim: f64§patched_name: String§coverage: f32fraction of the target function body executed, in [0,1]. advisory: a low value means the print was built from a small slice of the function, so the verdict rests on little observed behavior. shown to the analyst, does not change the verdict (see LOW_COVERAGE_ADVISORY).
Implementations§
Auto Trait Implementations§
impl Freeze for TriageHit
impl RefUnwindSafe for TriageHit
impl Send for TriageHit
impl Sync for TriageHit
impl Unpin for TriageHit
impl UnsafeUnpin for TriageHit
impl UnwindSafe for TriageHit
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more