pub struct CashForecastingConfig {
pub enabled: bool,
pub horizon_days: u32,
pub ar_collection_probability_curve: String,
pub confidence_interval: f64,
}Expand description
Cash forecasting configuration.
Controls forward-looking cash forecast generation with probability-weighted items.
Fields§
§enabled: boolWhether cash forecasting is enabled.
horizon_days: u32Number of days to forecast into the future.
ar_collection_probability_curve: StringAR collection probability curve type (“aging” or “flat”).
confidence_interval: f64Confidence interval for the forecast (0.0 to 1.0).
Trait Implementations§
Source§impl Clone for CashForecastingConfig
impl Clone for CashForecastingConfig
Source§fn clone(&self) -> CashForecastingConfig
fn clone(&self) -> CashForecastingConfig
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 CashForecastingConfig
impl Debug for CashForecastingConfig
Source§impl Default for CashForecastingConfig
impl Default for CashForecastingConfig
Source§impl<'de> Deserialize<'de> for CashForecastingConfig
impl<'de> Deserialize<'de> for CashForecastingConfig
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 CashForecastingConfig
impl RefUnwindSafe for CashForecastingConfig
impl Send for CashForecastingConfig
impl Sync for CashForecastingConfig
impl Unpin for CashForecastingConfig
impl UnsafeUnpin for CashForecastingConfig
impl UnwindSafe for CashForecastingConfig
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