pub struct TaxTranscriptsSchema {
pub years: Option<Vec<f64>>,
pub filing_status: Option<String>,
pub filing_address: Option<AddressSchema>,
pub filers: Option<Vec<TaxTranscriptFilerSchema>>,
}
Fields§
§years: Option<Vec<f64>>
List of years associated with 4506T form
filing_status: Option<String>
Filing status
filing_address: Option<AddressSchema>
§filers: Option<Vec<TaxTranscriptFilerSchema>>
Trait Implementations§
Source§impl Debug for TaxTranscriptsSchema
impl Debug for TaxTranscriptsSchema
Source§impl<'de> Deserialize<'de> for TaxTranscriptsSchema
impl<'de> Deserialize<'de> for TaxTranscriptsSchema
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 Display for TaxTranscriptsSchema
impl Display for TaxTranscriptsSchema
Auto Trait Implementations§
impl Freeze for TaxTranscriptsSchema
impl RefUnwindSafe for TaxTranscriptsSchema
impl Send for TaxTranscriptsSchema
impl Sync for TaxTranscriptsSchema
impl Unpin for TaxTranscriptsSchema
impl UnwindSafe for TaxTranscriptsSchema
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