pub struct LifecycleDistribution {
pub prospect: f64,
pub new: f64,
pub growth: f64,
pub mature: f64,
pub at_risk: f64,
pub churned: f64,
}Expand description
Distribution of lifecycle stages.
Fields§
§prospect: f64Prospect rate
new: f64New customer rate
growth: f64Growth stage rate
mature: f64Mature stage rate
at_risk: f64At-risk rate
churned: f64Churned rate
Implementations§
Trait Implementations§
Source§impl Clone for LifecycleDistribution
impl Clone for LifecycleDistribution
Source§fn clone(&self) -> LifecycleDistribution
fn clone(&self) -> LifecycleDistribution
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 LifecycleDistribution
impl Debug for LifecycleDistribution
Auto Trait Implementations§
impl Freeze for LifecycleDistribution
impl RefUnwindSafe for LifecycleDistribution
impl Send for LifecycleDistribution
impl Sync for LifecycleDistribution
impl Unpin for LifecycleDistribution
impl UnwindSafe for LifecycleDistribution
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