pub struct AccountLabelSummary {
pub total_accounts: usize,
pub funnel_count: usize,
pub funnel_rate: f64,
pub mule_count: usize,
pub mule_rate: f64,
pub dormant_count: usize,
pub dormant_rate: f64,
}Expand description
Account label summary.
Fields§
§total_accounts: usizeTotal accounts
funnel_count: usizeNumber of funnel accounts
funnel_rate: f64Funnel rate
mule_count: usizeNumber of mule accounts
mule_rate: f64Mule rate
dormant_count: usizeNumber of dormant accounts
dormant_rate: f64Dormant rate
Trait Implementations§
Source§impl Clone for AccountLabelSummary
impl Clone for AccountLabelSummary
Source§fn clone(&self) -> AccountLabelSummary
fn clone(&self) -> AccountLabelSummary
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 AccountLabelSummary
impl RefUnwindSafe for AccountLabelSummary
impl Send for AccountLabelSummary
impl Sync for AccountLabelSummary
impl Unpin for AccountLabelSummary
impl UnwindSafe for AccountLabelSummary
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