pub struct LaborImpactEstimate { /* private fields */ }Expand description
Labor impact estimate used by the data-quality hygiene workflow; it finds duplicate, stale, or inconsistent records while blocking automatic provider-system mutation.
Implementations§
Source§impl LaborImpactEstimate
impl LaborImpactEstimate
Sourcepub const fn new(
before_minutes: LaborMinutes,
after_minutes: LaborMinutes,
) -> Self
pub const fn new( before_minutes: LaborMinutes, after_minutes: LaborMinutes, ) -> Self
Stores the reviewed value for the data-quality hygiene workflow without triggering provider, customer, payment, or schedule side effects.
Sourcepub const fn before_minutes(&self) -> LaborMinutes
pub const fn before_minutes(&self) -> LaborMinutes
Returns the before minutes evidence available to data-quality hygiene review while leaving provider, customer, payment, and schedule systems unchanged.
Sourcepub const fn after_minutes(&self) -> LaborMinutes
pub const fn after_minutes(&self) -> LaborMinutes
Returns the after minutes evidence available to data-quality hygiene review while leaving provider, customer, payment, and schedule systems unchanged.
Sourcepub const fn minutes_saved(&self) -> u16
pub const fn minutes_saved(&self) -> u16
Returns the minutes saved evidence available to data-quality hygiene review while leaving provider, customer, payment, and schedule systems unchanged.
Trait Implementations§
Source§impl Clone for LaborImpactEstimate
impl Clone for LaborImpactEstimate
Source§fn clone(&self) -> LaborImpactEstimate
fn clone(&self) -> LaborImpactEstimate
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more