pub enum PostTaxDeduction {
Roth401K(Option<f32>),
VoluntaryLife(Option<f32>),
VoluntaryADD(Option<f32>),
VoluntarySTD(Option<f32>),
VoluntaryLTD(Option<f32>),
WageGarnishment(Option<f32>),
}Expand description
Post-tax deductions are applied after federal tax calculations
Variants§
Roth401K(Option<f32>)
VoluntaryLife(Option<f32>)
VoluntaryADD(Option<f32>)
VoluntarySTD(Option<f32>)
VoluntaryLTD(Option<f32>)
WageGarnishment(Option<f32>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PostTaxDeduction
impl RefUnwindSafe for PostTaxDeduction
impl Send for PostTaxDeduction
impl Sync for PostTaxDeduction
impl Unpin for PostTaxDeduction
impl UnwindSafe for PostTaxDeduction
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