pub struct FinancialStatementImpact {
pub assets_impact: Decimal,
pub liabilities_impact: Decimal,
pub equity_impact: Decimal,
pub revenue_impact: Decimal,
pub expense_impact: Decimal,
pub net_income_impact: Decimal,
}Expand description
Impact on specific financial statements.
Fields§
§assets_impact: DecimalImpact on balance sheet assets.
liabilities_impact: DecimalImpact on balance sheet liabilities.
equity_impact: DecimalImpact on equity.
revenue_impact: DecimalImpact on revenue.
expense_impact: DecimalImpact on expenses.
net_income_impact: DecimalImpact on net income.
Trait Implementations§
Source§impl Clone for FinancialStatementImpact
impl Clone for FinancialStatementImpact
Source§fn clone(&self) -> FinancialStatementImpact
fn clone(&self) -> FinancialStatementImpact
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 FinancialStatementImpact
impl Debug for FinancialStatementImpact
Source§impl Default for FinancialStatementImpact
impl Default for FinancialStatementImpact
Source§fn default() -> FinancialStatementImpact
fn default() -> FinancialStatementImpact
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FinancialStatementImpact
impl<'de> Deserialize<'de> for FinancialStatementImpact
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 FinancialStatementImpact
impl RefUnwindSafe for FinancialStatementImpact
impl Send for FinancialStatementImpact
impl Sync for FinancialStatementImpact
impl Unpin for FinancialStatementImpact
impl UnwindSafe for FinancialStatementImpact
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