pub struct LifecycleSchemaConfig {
pub prospect_rate: f64,
pub new_rate: f64,
pub growth_rate: f64,
pub mature_rate: f64,
pub at_risk_rate: f64,
pub churned_rate: f64,
}Expand description
Customer lifecycle stage configuration.
Fields§
§prospect_rate: f64Prospect stage rate.
new_rate: f64New customer stage rate.
growth_rate: f64Growth stage rate.
mature_rate: f64Mature stage rate.
at_risk_rate: f64At-risk stage rate.
churned_rate: f64Churned stage rate.
Trait Implementations§
Source§impl Clone for LifecycleSchemaConfig
impl Clone for LifecycleSchemaConfig
Source§fn clone(&self) -> LifecycleSchemaConfig
fn clone(&self) -> LifecycleSchemaConfig
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 LifecycleSchemaConfig
impl Debug for LifecycleSchemaConfig
Source§impl Default for LifecycleSchemaConfig
impl Default for LifecycleSchemaConfig
Source§impl<'de> Deserialize<'de> for LifecycleSchemaConfig
impl<'de> Deserialize<'de> for LifecycleSchemaConfig
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 LifecycleSchemaConfig
impl RefUnwindSafe for LifecycleSchemaConfig
impl Send for LifecycleSchemaConfig
impl Sync for LifecycleSchemaConfig
impl Unpin for LifecycleSchemaConfig
impl UnwindSafe for LifecycleSchemaConfig
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