pub struct IncomeStatement {
pub meta: Option<Box<IncomeStatementMeta>>,
pub income_statement: Option<Vec<IncomeStatementBlock>>,
}Fields§
§meta: Option<Box<IncomeStatementMeta>>§income_statement: Option<Vec<IncomeStatementBlock>>Income statement data
Implementations§
Source§impl IncomeStatement
impl IncomeStatement
pub fn new() -> IncomeStatement
Trait Implementations§
Source§impl Clone for IncomeStatement
impl Clone for IncomeStatement
Source§fn clone(&self) -> IncomeStatement
fn clone(&self) -> IncomeStatement
Returns a duplicate of the value. Read more
1.0.0 · 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 IncomeStatement
impl Debug for IncomeStatement
Source§impl Default for IncomeStatement
impl Default for IncomeStatement
Source§fn default() -> IncomeStatement
fn default() -> IncomeStatement
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IncomeStatement
impl<'de> Deserialize<'de> for IncomeStatement
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 IncomeStatement
impl PartialEq for IncomeStatement
Source§impl Serialize for IncomeStatement
impl Serialize for IncomeStatement
impl StructuralPartialEq for IncomeStatement
Auto Trait Implementations§
impl Freeze for IncomeStatement
impl RefUnwindSafe for IncomeStatement
impl Send for IncomeStatement
impl Sync for IncomeStatement
impl Unpin for IncomeStatement
impl UnwindSafe for IncomeStatement
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