pub struct CostConfig {
pub average_wage: f64,
pub overhead: f64,
}Expand description
Shared cost parameters (salary-based models).
Fields§
§average_wage: f64Average annual salary in USD.
overhead: f64Overhead multiplier (facilities, management, etc.).
Trait Implementations§
Source§impl Clone for CostConfig
impl Clone for CostConfig
Source§fn clone(&self) -> CostConfig
fn clone(&self) -> CostConfig
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 CostConfig
impl Debug for CostConfig
Source§impl Default for CostConfig
impl Default for CostConfig
Auto Trait Implementations§
impl Freeze for CostConfig
impl RefUnwindSafe for CostConfig
impl Send for CostConfig
impl Sync for CostConfig
impl Unpin for CostConfig
impl UnsafeUnpin for CostConfig
impl UnwindSafe for CostConfig
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