pub struct CustomerLabelSummary {
pub total_customers: usize,
pub mule_count: usize,
pub mule_rate: f64,
pub deceptive_count: usize,
pub deceptive_rate: f64,
pub by_risk_tier: HashMap<RiskTier, usize>,
}Expand description
Customer label summary.
Fields§
§total_customers: usizeTotal customers
mule_count: usizeNumber of mules
mule_rate: f64Mule rate
deceptive_count: usizeNumber with deceptive KYC
deceptive_rate: f64Deceptive rate
by_risk_tier: HashMap<RiskTier, usize>Counts by risk tier
Trait Implementations§
Source§impl Clone for CustomerLabelSummary
impl Clone for CustomerLabelSummary
Source§fn clone(&self) -> CustomerLabelSummary
fn clone(&self) -> CustomerLabelSummary
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 CustomerLabelSummary
impl RefUnwindSafe for CustomerLabelSummary
impl Send for CustomerLabelSummary
impl Sync for CustomerLabelSummary
impl Unpin for CustomerLabelSummary
impl UnwindSafe for CustomerLabelSummary
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