pub struct Form {
pub code: Option<String>,
pub name: Option<String>,
pub signed: Option<bool>,
pub why: Option<String>,
}Fields§
§code: Option<String>Code is the IRS designation, e.g. "SS-4".
name: Option<String>Name is the form’s own title, so a reader need not already know the code.
signed: Option<bool>Signed reports whether we hold the signature.
why: Option<String>Why states what this form is for in this application — the same form is owed for different reasons on different paths.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Form
impl<'de> Deserialize<'de> for Form
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Form
Auto Trait Implementations§
impl Freeze for Form
impl RefUnwindSafe for Form
impl Send for Form
impl Sync for Form
impl Unpin for Form
impl UnsafeUnpin for Form
impl UnwindSafe for Form
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