pub struct CorrelationResult {
pub session_id: String,
pub pattern_matches: Vec<PatternMatch>,
pub rapid_actions: Option<RapidActionAlert>,
pub escalation: Option<EscalationSequence>,
pub total_risk: f64,
}Expand description
Result of correlating a newly recorded action against known patterns.
Fields§
§session_id: StringSession the action was recorded in.
pattern_matches: Vec<PatternMatch>Attack patterns matched after this action.
rapid_actions: Option<RapidActionAlert>Rapid-fire action alert, if triggered.
escalation: Option<EscalationSequence>Privilege escalation sequence, if detected.
total_risk: f64Aggregate risk score for this result.
Trait Implementations§
Source§impl Clone for CorrelationResult
impl Clone for CorrelationResult
Source§fn clone(&self) -> CorrelationResult
fn clone(&self) -> CorrelationResult
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 moreAuto Trait Implementations§
impl Freeze for CorrelationResult
impl RefUnwindSafe for CorrelationResult
impl Send for CorrelationResult
impl Sync for CorrelationResult
impl Unpin for CorrelationResult
impl UnsafeUnpin for CorrelationResult
impl UnwindSafe for CorrelationResult
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