pub struct AccountAnomalyRulesConfig {
pub high_risk_account_multiplier: f64,
pub high_risk_accounts: Vec<String>,
pub suspense_account_multiplier: f64,
pub suspense_accounts: Vec<String>,
pub intercompany_account_multiplier: f64,
}Expand description
Account-specific anomaly rules configuration.
Fields§
§high_risk_account_multiplier: f64Error rate multiplier for high-risk accounts.
high_risk_accounts: Vec<String>Account codes considered high-risk.
suspense_account_multiplier: f64Error rate multiplier for suspense accounts.
suspense_accounts: Vec<String>Account codes considered suspense accounts.
intercompany_account_multiplier: f64Error rate multiplier for intercompany accounts.
Trait Implementations§
Source§impl Clone for AccountAnomalyRulesConfig
impl Clone for AccountAnomalyRulesConfig
Source§fn clone(&self) -> AccountAnomalyRulesConfig
fn clone(&self) -> AccountAnomalyRulesConfig
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 AccountAnomalyRulesConfig
impl Debug for AccountAnomalyRulesConfig
Source§impl Default for AccountAnomalyRulesConfig
impl Default for AccountAnomalyRulesConfig
Source§impl<'de> Deserialize<'de> for AccountAnomalyRulesConfig
impl<'de> Deserialize<'de> for AccountAnomalyRulesConfig
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
Auto Trait Implementations§
impl Freeze for AccountAnomalyRulesConfig
impl RefUnwindSafe for AccountAnomalyRulesConfig
impl Send for AccountAnomalyRulesConfig
impl Sync for AccountAnomalyRulesConfig
impl Unpin for AccountAnomalyRulesConfig
impl UnwindSafe for AccountAnomalyRulesConfig
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