pub enum ScanIntensity {
Minimal,
Standard,
Deep,
Maximum,
}Expand description
How deeply to scan inter-agent messages.
Variants§
Minimal
System-level agents – log only.
Standard
Trusted agents – basic pattern matching.
Deep
Semi-trusted – full ML and heuristic scanning.
Maximum
Untrusted – all detectors plus behavioral analysis.
Trait Implementations§
Source§impl Clone for ScanIntensity
impl Clone for ScanIntensity
Source§fn clone(&self) -> ScanIntensity
fn clone(&self) -> ScanIntensity
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 ScanIntensity
impl Debug for ScanIntensity
Source§impl Display for ScanIntensity
impl Display for ScanIntensity
Source§impl PartialEq for ScanIntensity
impl PartialEq for ScanIntensity
impl Eq for ScanIntensity
impl StructuralPartialEq for ScanIntensity
Auto Trait Implementations§
impl Freeze for ScanIntensity
impl RefUnwindSafe for ScanIntensity
impl Send for ScanIntensity
impl Sync for ScanIntensity
impl Unpin for ScanIntensity
impl UnsafeUnpin for ScanIntensity
impl UnwindSafe for ScanIntensity
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.