pub struct Form1040Fill {
pub pdf: Vec<u8>,
pub filled_7a: bool,
pub active_zero: bool,
pub loss: bool,
}Expand description
The result of a Form 1040 cap-gains fill: the bytes + what was actually written (drives the CLI’s partial-scope + loss notices).
Fields§
§pdf: Vec<u8>The serialized PDF bytes.
filled_7a: boolWhether line 7a received a value (a gain amount or the “-0-” literal).
active_zero: boolActive-and-netted-to-zero → line 7a is the “-0-” literal.
loss: boolNet loss → line 7a left BLANK; the caller prints the §1211 line-21 notice.
Trait Implementations§
Source§impl Clone for Form1040Fill
impl Clone for Form1040Fill
Source§fn clone(&self) -> Form1040Fill
fn clone(&self) -> Form1040Fill
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 moreAuto Trait Implementations§
impl Freeze for Form1040Fill
impl RefUnwindSafe for Form1040Fill
impl Send for Form1040Fill
impl Sync for Form1040Fill
impl Unpin for Form1040Fill
impl UnsafeUnpin for Form1040Fill
impl UnwindSafe for Form1040Fill
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