IncomeStatementBlock

Struct IncomeStatementBlock 

Source
pub struct IncomeStatementBlock {
Show 22 fields pub fiscal_date: Option<String>, pub quarter: Option<i64>, pub year: Option<i64>, pub sales: Option<i64>, pub cost_of_goods: Option<i64>, pub gross_profit: Option<i64>, pub operating_expense: Option<Box<IncomeStatementBlockOperatingExpense>>, pub operating_income: Option<i64>, pub non_operating_interest: Option<Box<IncomeStatementBlockNonOperatingInterest>>, pub other_income_expense: Option<i64>, pub pretax_income: Option<i64>, pub income_tax: Option<i64>, pub net_income: Option<i64>, pub eps_basic: Option<f64>, pub eps_diluted: Option<f64>, pub basic_shares_outstanding: Option<i64>, pub diluted_shares_outstanding: Option<i64>, pub ebit: Option<i64>, pub ebitda: Option<i64>, pub net_income_continuous_operations: Option<i64>, pub minority_interests: Option<i64>, pub preferred_stock_dividends: Option<i64>,
}

Fields§

§fiscal_date: Option<String>

Date of the income statement release

§quarter: Option<i64>

Fiscal quarter. Visible when &period=quarterly

§year: Option<i64>

Fiscal year

§sales: Option<i64>

Refers to total reported revenue

§cost_of_goods: Option<i64>

Refers to cost of revenue

§gross_profit: Option<i64>

Refers to net gross profit: sales - cost_of_goods

§operating_expense: Option<Box<IncomeStatementBlockOperatingExpense>>§operating_income: Option<i64>

Refers to net operating income: gross_profit - research_and_development - selling_general_and_administrative

§non_operating_interest: Option<Box<IncomeStatementBlockNonOperatingInterest>>§other_income_expense: Option<i64>

Refers to other incomes or expenses

§pretax_income: Option<i64>

Refers to earnings before tax: operating_income + net_non_operating_interest - other_income_expense

§income_tax: Option<i64>

Refers to a tax provision

§net_income: Option<i64>

Refers to net income: pretax_income - income_tax

§eps_basic: Option<f64>

Refers to earnings per share (EPS)

§eps_diluted: Option<f64>

Refers to diluted earnings per share (EPS)

§basic_shares_outstanding: Option<i64>

Refers for the shares outstanding held by all its shareholders

§diluted_shares_outstanding: Option<i64>

Refers to the total number of shares a company would have if all dilutive securities were exercised and converted into shares

§ebit: Option<i64>

Refers to earnings before interest and taxes (EBIT) measure

§ebitda: Option<i64>

Refers to EBITDA (earnings before interest, taxes, depreciation, and amortization) measure

§net_income_continuous_operations: Option<i64>

Refers to the after-tax earnings that a business has generated from its operational activities

§minority_interests: Option<i64>

Refers to amount of minority interests paid out

§preferred_stock_dividends: Option<i64>

Refers to dividend that is allocated to and paid on a company’s preferred shares

Implementations§

Trait Implementations§

Source§

impl Clone for IncomeStatementBlock

Source§

fn clone(&self) -> IncomeStatementBlock

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for IncomeStatementBlock

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for IncomeStatementBlock

Source§

fn default() -> IncomeStatementBlock

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for IncomeStatementBlock

Source§

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 IncomeStatementBlock

Source§

fn eq(&self, other: &IncomeStatementBlock) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for IncomeStatementBlock

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for IncomeStatementBlock

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,