pub struct IncomeStatementBlockOperatingExpense {
pub research_and_development: Option<i64>,
pub selling_general_and_administrative: Option<i64>,
pub other_operating_expenses: Option<i64>,
}Expand description
IncomeStatementBlockOperatingExpense : Operating expense details
Fields§
§research_and_development: Option<i64>Refers to research & development (R&D) expenses
selling_general_and_administrative: Option<i64>Refers to selling, general and administrative (SG&A) expenses
other_operating_expenses: Option<i64>Refers to other operating expenses
Implementations§
Source§impl IncomeStatementBlockOperatingExpense
impl IncomeStatementBlockOperatingExpense
Sourcepub fn new() -> IncomeStatementBlockOperatingExpense
pub fn new() -> IncomeStatementBlockOperatingExpense
Operating expense details
Trait Implementations§
Source§impl Clone for IncomeStatementBlockOperatingExpense
impl Clone for IncomeStatementBlockOperatingExpense
Source§fn clone(&self) -> IncomeStatementBlockOperatingExpense
fn clone(&self) -> IncomeStatementBlockOperatingExpense
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 Default for IncomeStatementBlockOperatingExpense
impl Default for IncomeStatementBlockOperatingExpense
Source§fn default() -> IncomeStatementBlockOperatingExpense
fn default() -> IncomeStatementBlockOperatingExpense
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IncomeStatementBlockOperatingExpense
impl<'de> Deserialize<'de> for IncomeStatementBlockOperatingExpense
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 IncomeStatementBlockOperatingExpense
impl PartialEq for IncomeStatementBlockOperatingExpense
Source§fn eq(&self, other: &IncomeStatementBlockOperatingExpense) -> bool
fn eq(&self, other: &IncomeStatementBlockOperatingExpense) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IncomeStatementBlockOperatingExpense
Auto Trait Implementations§
impl Freeze for IncomeStatementBlockOperatingExpense
impl RefUnwindSafe for IncomeStatementBlockOperatingExpense
impl Send for IncomeStatementBlockOperatingExpense
impl Sync for IncomeStatementBlockOperatingExpense
impl Unpin for IncomeStatementBlockOperatingExpense
impl UnwindSafe for IncomeStatementBlockOperatingExpense
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