pub enum PreTaxDeduction {
Medical(Option<f32>),
Dental(Option<f32>),
Vision(Option<f32>),
Traditional401K(Option<f32>),
HSA(Option<f32>),
FSA(Option<f32>),
}Expand description
Pre-tax deductions are applied before federal tax calculations.
Variants§
Medical(Option<f32>)
Dental(Option<f32>)
Vision(Option<f32>)
Traditional401K(Option<f32>)
HSA(Option<f32>)
FSA(Option<f32>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PreTaxDeduction
impl RefUnwindSafe for PreTaxDeduction
impl Send for PreTaxDeduction
impl Sync for PreTaxDeduction
impl Unpin for PreTaxDeduction
impl UnsafeUnpin for PreTaxDeduction
impl UnwindSafe for PreTaxDeduction
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