pub struct DetectionConfidence {
pub approach: ApproachConfidenceLevel,
pub true_positive_evidence: TruePositiveEvidenceLevel,
pub false_positive_evidence: DetectionIssueEvidenceLevel,
pub false_negative_evidence: DetectionIssueEvidenceLevel,
pub testing: TestingThoroughnessLevel,
pub known_issues: &'static [KnownIssueRef],
}Expand description
Multi-dimensional confidence metadata for an event detector.
Fields§
§approach: ApproachConfidenceLevel§true_positive_evidence: TruePositiveEvidenceLevel§false_positive_evidence: DetectionIssueEvidenceLevel§false_negative_evidence: DetectionIssueEvidenceLevel§testing: TestingThoroughnessLevel§known_issues: &'static [KnownIssueRef]Trait Implementations§
Source§impl Clone for DetectionConfidence
impl Clone for DetectionConfidence
impl Copy for DetectionConfidence
Source§impl Debug for DetectionConfidence
impl Debug for DetectionConfidence
impl Eq for DetectionConfidence
Source§impl PartialEq for DetectionConfidence
impl PartialEq for DetectionConfidence
Source§impl Serialize for DetectionConfidence
impl Serialize for DetectionConfidence
impl StructuralPartialEq for DetectionConfidence
Auto Trait Implementations§
impl Freeze for DetectionConfidence
impl RefUnwindSafe for DetectionConfidence
impl Send for DetectionConfidence
impl Sync for DetectionConfidence
impl Unpin for DetectionConfidence
impl UnsafeUnpin for DetectionConfidence
impl UnwindSafe for DetectionConfidence
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