pub struct SequenceConfig {
pub warmup_calls: u32,
pub read_to_act_window_ms: u64,
pub max_new_tools_after_taint: u32,
pub anomaly_action: AnomalyAction,
}Expand description
Configuration for sequence analysis.
Fields§
§warmup_calls: u32Minimum calls before anomaly detection activates.
read_to_act_window_ms: u64Max time (ms) between tainted source read and privileged action.
max_new_tools_after_taint: u32Max new distinct tools after first taint before flagging.
anomaly_action: AnomalyActionAction on anomaly detection.
Trait Implementations§
Source§impl Clone for SequenceConfig
impl Clone for SequenceConfig
Source§fn clone(&self) -> SequenceConfig
fn clone(&self) -> SequenceConfig
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 SequenceConfig
impl Debug for SequenceConfig
Auto Trait Implementations§
impl Freeze for SequenceConfig
impl RefUnwindSafe for SequenceConfig
impl Send for SequenceConfig
impl Sync for SequenceConfig
impl Unpin for SequenceConfig
impl UnsafeUnpin for SequenceConfig
impl UnwindSafe for SequenceConfig
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