pub struct TypologyConfig {
pub suspicious_rate: f64,
pub structuring_rate: f64,
pub funnel_rate: f64,
pub layering_rate: f64,
pub mule_rate: f64,
pub fraud_rate: f64,
pub sophistication: SophisticationDistribution,
pub detectability: f64,
pub round_tripping_rate: f64,
pub trade_based_rate: f64,
}Expand description
AML typology configuration.
Fields§
§suspicious_rate: f64Overall suspicious activity rate (0.0-1.0)
structuring_rate: f64Structuring typology rate
funnel_rate: f64Funnel account rate
layering_rate: f64Layering chain rate
mule_rate: f64Money mule rate
fraud_rate: f64Fraud rate (ATO, synthetic, etc.)
sophistication: SophisticationDistributionSophistication distribution
detectability: f64Base detectability (0.0-1.0)
round_tripping_rate: f64Round-tripping rate
trade_based_rate: f64Trade-based ML rate
Trait Implementations§
Source§impl Clone for TypologyConfig
impl Clone for TypologyConfig
Source§fn clone(&self) -> TypologyConfig
fn clone(&self) -> TypologyConfig
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 TypologyConfig
impl Debug for TypologyConfig
Source§impl Default for TypologyConfig
impl Default for TypologyConfig
Source§impl<'de> Deserialize<'de> for TypologyConfig
impl<'de> Deserialize<'de> for TypologyConfig
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 TypologyConfig
impl RefUnwindSafe for TypologyConfig
impl Send for TypologyConfig
impl Sync for TypologyConfig
impl Unpin for TypologyConfig
impl UnwindSafe for TypologyConfig
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