pub struct SalesQuoteConfig {
pub enabled: bool,
pub quotes_per_month: u32,
pub win_rate: f64,
pub validity_days: u32,
}Expand description
Sales quote (quote-to-order) pipeline configuration.
Fields§
§enabled: boolEnable sales quote generation
quotes_per_month: u32Quotes per month
win_rate: f64Win rate (fraction of quotes that convert to orders)
validity_days: u32Average quote validity in days
Trait Implementations§
Source§impl Clone for SalesQuoteConfig
impl Clone for SalesQuoteConfig
Source§fn clone(&self) -> SalesQuoteConfig
fn clone(&self) -> SalesQuoteConfig
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 SalesQuoteConfig
impl Debug for SalesQuoteConfig
Source§impl Default for SalesQuoteConfig
impl Default for SalesQuoteConfig
Source§impl<'de> Deserialize<'de> for SalesQuoteConfig
impl<'de> Deserialize<'de> for SalesQuoteConfig
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 SalesQuoteConfig
impl RefUnwindSafe for SalesQuoteConfig
impl Send for SalesQuoteConfig
impl Sync for SalesQuoteConfig
impl Unpin for SalesQuoteConfig
impl UnsafeUnpin for SalesQuoteConfig
impl UnwindSafe for SalesQuoteConfig
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