pub struct FinancialStatement {Show 13 fields
pub statement_id: String,
pub company_code: String,
pub statement_type: StatementType,
pub basis: StatementBasis,
pub period_start: NaiveDate,
pub period_end: NaiveDate,
pub fiscal_year: u16,
pub fiscal_period: u8,
pub line_items: Vec<FinancialStatementLineItem>,
pub cash_flow_items: Vec<CashFlowItem>,
pub currency: String,
pub is_consolidated: bool,
pub preparer_id: String,
}Expand description
A complete financial statement.
Fields§
§statement_id: StringUnique statement identifier
company_code: StringCompany code
statement_type: StatementTypeStatement type
basis: StatementBasisAccounting basis
period_start: NaiveDateReporting period start
period_end: NaiveDateReporting period end
fiscal_year: u16Fiscal year
fiscal_period: u8Fiscal period
line_items: Vec<FinancialStatementLineItem>Line items
cash_flow_items: Vec<CashFlowItem>Cash flow items (only for CashFlowStatement)
currency: StringCurrency
is_consolidated: boolWhether this is a consolidated statement
preparer_id: StringPreparer ID
Trait Implementations§
Source§impl Clone for FinancialStatement
impl Clone for FinancialStatement
Source§fn clone(&self) -> FinancialStatement
fn clone(&self) -> FinancialStatement
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 FinancialStatement
impl Debug for FinancialStatement
Source§impl<'de> Deserialize<'de> for FinancialStatement
impl<'de> Deserialize<'de> for FinancialStatement
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
Auto Trait Implementations§
impl Freeze for FinancialStatement
impl RefUnwindSafe for FinancialStatement
impl Send for FinancialStatement
impl Sync for FinancialStatement
impl Unpin for FinancialStatement
impl UnwindSafe for FinancialStatement
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