pub struct StandardDeduction {
pub base: f64,
pub temporary_addon: f64,
}Expand description
Filing-status- and year-dependent standard deduction parameters (estimated OBBBA amounts).
Fields§
§base: f64Base (permanent, TCJA-level) standard deduction.
temporary_addon: f64Temporary OBBBA add-on available 2025–2028 inclusive.
Implementations§
Source§impl StandardDeduction
impl StandardDeduction
Sourcepub const SINGLE_2025: StandardDeduction
pub const SINGLE_2025: StandardDeduction
Estimated single / head-of-household standard deduction for 2025.
Sourcepub const JOINT_2025: StandardDeduction
pub const JOINT_2025: StandardDeduction
Estimated married filing jointly standard deduction for 2025.
Trait Implementations§
Source§impl Clone for StandardDeduction
impl Clone for StandardDeduction
Source§fn clone(&self) -> StandardDeduction
fn clone(&self) -> StandardDeduction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for StandardDeduction
Source§impl Debug for StandardDeduction
impl Debug for StandardDeduction
Source§impl PartialEq for StandardDeduction
impl PartialEq for StandardDeduction
impl StructuralPartialEq for StandardDeduction
Auto Trait Implementations§
impl Freeze for StandardDeduction
impl RefUnwindSafe for StandardDeduction
impl Send for StandardDeduction
impl Sync for StandardDeduction
impl Unpin for StandardDeduction
impl UnsafeUnpin for StandardDeduction
impl UnwindSafe for StandardDeduction
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