pub struct ScoredFinding {
pub finding_id: String,
pub original_confidence: f64,
pub observer_score: f64,
pub rank: usize,
pub label: String,
}Expand description
A scored finding within an observer view.
Fields§
§finding_id: String§original_confidence: f64§observer_score: f64§rank: usize§label: StringShort label for display (truncated assertion text).
Auto Trait Implementations§
impl Freeze for ScoredFinding
impl RefUnwindSafe for ScoredFinding
impl Send for ScoredFinding
impl Sync for ScoredFinding
impl Unpin for ScoredFinding
impl UnsafeUnpin for ScoredFinding
impl UnwindSafe for ScoredFinding
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