pub struct LabelSummary {
pub total_transactions: usize,
pub suspicious_count: usize,
pub suspicious_rate: f64,
pub spoofed_count: usize,
pub spoofed_rate: f64,
pub by_typology: HashMap<AmlTypology, usize>,
pub by_stage: HashMap<LaunderingStage, usize>,
}Expand description
Summary statistics for transaction labels.
Fields§
§total_transactions: usizeTotal number of transactions
suspicious_count: usizeNumber of suspicious transactions
suspicious_rate: f64Rate of suspicious transactions
spoofed_count: usizeNumber of spoofed transactions
spoofed_rate: f64Rate of spoofed transactions
by_typology: HashMap<AmlTypology, usize>Counts by typology
by_stage: HashMap<LaunderingStage, usize>Counts by laundering stage
Trait Implementations§
Source§impl Clone for LabelSummary
impl Clone for LabelSummary
Source§fn clone(&self) -> LabelSummary
fn clone(&self) -> LabelSummary
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 moreAuto Trait Implementations§
impl Freeze for LabelSummary
impl RefUnwindSafe for LabelSummary
impl Send for LabelSummary
impl Sync for LabelSummary
impl Unpin for LabelSummary
impl UnwindSafe for LabelSummary
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