pub struct ErrorPatternDrift {
pub new_employee_error_rate: f64,
pub learning_curve_months: u32,
pub fatigue_error_increase: f64,
}Expand description
Error pattern drift configuration.
Fields§
§new_employee_error_rate: f64Initial error rate for new employees.
learning_curve_months: u32Learning curve duration in months.
fatigue_error_increase: f64Error rate increase due to fatigue (per year after learning).
Trait Implementations§
Source§impl Clone for ErrorPatternDrift
impl Clone for ErrorPatternDrift
Source§fn clone(&self) -> ErrorPatternDrift
fn clone(&self) -> ErrorPatternDrift
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 ErrorPatternDrift
impl Debug for ErrorPatternDrift
Source§impl Default for ErrorPatternDrift
impl Default for ErrorPatternDrift
Source§impl<'de> Deserialize<'de> for ErrorPatternDrift
impl<'de> Deserialize<'de> for ErrorPatternDrift
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 ErrorPatternDrift
impl RefUnwindSafe for ErrorPatternDrift
impl Send for ErrorPatternDrift
impl Sync for ErrorPatternDrift
impl Unpin for ErrorPatternDrift
impl UnwindSafe for ErrorPatternDrift
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