#[repr(u8)]pub enum DisclosureContentType {
TaxReturn = 0,
W2Form = 1,
Form1099 = 2,
Transcript = 3,
PaymentReceipt = 4,
AssessmentNotice = 5,
Other = 255,
}Expand description
Disclosure content type
Variants§
TaxReturn = 0
Tax return document
W2Form = 1
W-2 or equivalent
Form1099 = 2
1099 or equivalent
Transcript = 3
Tax transcript
PaymentReceipt = 4
Payment receipt
AssessmentNotice = 5
Assessment notice
Other = 255
Other document
Implementations§
Trait Implementations§
Source§impl Clone for DisclosureContentType
impl Clone for DisclosureContentType
Source§fn clone(&self) -> DisclosureContentType
fn clone(&self) -> DisclosureContentType
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 moreSource§impl Debug for DisclosureContentType
impl Debug for DisclosureContentType
Source§impl<'de> Deserialize<'de> for DisclosureContentType
impl<'de> Deserialize<'de> for DisclosureContentType
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
Source§impl PartialEq for DisclosureContentType
impl PartialEq for DisclosureContentType
Source§fn eq(&self, other: &DisclosureContentType) -> bool
fn eq(&self, other: &DisclosureContentType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DisclosureContentType
impl Serialize for DisclosureContentType
impl Copy for DisclosureContentType
impl Eq for DisclosureContentType
impl StructuralPartialEq for DisclosureContentType
Auto Trait Implementations§
impl Freeze for DisclosureContentType
impl RefUnwindSafe for DisclosureContentType
impl Send for DisclosureContentType
impl Sync for DisclosureContentType
impl Unpin for DisclosureContentType
impl UnsafeUnpin for DisclosureContentType
impl UnwindSafe for DisclosureContentType
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