pub enum MonitoringIntensity {
Standard,
Enhanced,
Intensive,
}Expand description
Transaction monitoring intensity level.
Variants§
Standard
Standard automated monitoring
Enhanced
Enhanced monitoring with lower thresholds
Intensive
Intensive monitoring with manual review
Implementations§
Source§impl MonitoringIntensity
impl MonitoringIntensity
Sourcepub fn threshold_multiplier(&self) -> f64
pub fn threshold_multiplier(&self) -> f64
Alert threshold multiplier (1.0 = standard).
Sourcepub fn requires_manual_review(&self) -> bool
pub fn requires_manual_review(&self) -> bool
Whether manual review is required for alerts.
Trait Implementations§
Source§impl Clone for MonitoringIntensity
impl Clone for MonitoringIntensity
Source§fn clone(&self) -> MonitoringIntensity
fn clone(&self) -> MonitoringIntensity
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 MonitoringIntensity
impl Debug for MonitoringIntensity
Source§impl Default for MonitoringIntensity
impl Default for MonitoringIntensity
Source§fn default() -> MonitoringIntensity
fn default() -> MonitoringIntensity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MonitoringIntensity
impl<'de> Deserialize<'de> for MonitoringIntensity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for MonitoringIntensity
impl Hash for MonitoringIntensity
Source§impl PartialEq for MonitoringIntensity
impl PartialEq for MonitoringIntensity
Source§impl Serialize for MonitoringIntensity
impl Serialize for MonitoringIntensity
impl Copy for MonitoringIntensity
impl Eq for MonitoringIntensity
impl StructuralPartialEq for MonitoringIntensity
Auto Trait Implementations§
impl Freeze for MonitoringIntensity
impl RefUnwindSafe for MonitoringIntensity
impl Send for MonitoringIntensity
impl Sync for MonitoringIntensity
impl Unpin for MonitoringIntensity
impl UnwindSafe for MonitoringIntensity
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.