pub enum ActiveSource {
FullReturn,
TaxProfile,
Neither,
}Expand description
The source the input form is CURRENTLY displaying/editing for year — the toggle’s read side.
Mirrors resolve.rs’s precedence: a committed full return always wins over a tax_profile, which
wins over nothing at all. This is a display hint for plan 3 (the TUI), not a resolver decision.
Variants§
Auto Trait Implementations§
impl Freeze for ActiveSource
impl RefUnwindSafe for ActiveSource
impl Send for ActiveSource
impl Sync for ActiveSource
impl Unpin for ActiveSource
impl UnsafeUnpin for ActiveSource
impl UnwindSafe for ActiveSource
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