pub struct Params {
pub cap: f64,
pub phase_out_start: f64,
pub phase_out_rate: f64,
}Expand description
Filing-status-dependent deduction parameters.
All fields are the estimated statutory values; they are configurable so the crate can track IRS guidance as it finalizes.
Fields§
§cap: f64Maximum deduction for the full (under-threshold) overtime amount.
phase_out_start: f64MAGI at which the phase-out begins (deduction starts shrinking).
phase_out_rate: f64Phase-out rate: dollars of deduction lost per dollar of MAGI above
the threshold. The widely reported “$1 per $10 of MAGI” → 0.1.
Implementations§
Trait Implementations§
impl Copy for Params
impl StructuralPartialEq for Params
Auto Trait Implementations§
impl Freeze for Params
impl RefUnwindSafe for Params
impl Send for Params
impl Sync for Params
impl Unpin for Params
impl UnsafeUnpin for Params
impl UnwindSafe for Params
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