pub struct IncomeStatementBlockNonOperatingInterest {
pub income: Option<i64>,
pub expense: Option<i64>,
}Expand description
IncomeStatementBlockNonOperatingInterest : Non-operating interest details
Fields§
§income: Option<i64>Refers to non-operating interest income
expense: Option<i64>Refers to non-operating interest expense
Implementations§
Source§impl IncomeStatementBlockNonOperatingInterest
impl IncomeStatementBlockNonOperatingInterest
Sourcepub fn new() -> IncomeStatementBlockNonOperatingInterest
pub fn new() -> IncomeStatementBlockNonOperatingInterest
Non-operating interest details
Trait Implementations§
Source§impl Clone for IncomeStatementBlockNonOperatingInterest
impl Clone for IncomeStatementBlockNonOperatingInterest
Source§fn clone(&self) -> IncomeStatementBlockNonOperatingInterest
fn clone(&self) -> IncomeStatementBlockNonOperatingInterest
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 IncomeStatementBlockNonOperatingInterest
impl Default for IncomeStatementBlockNonOperatingInterest
Source§fn default() -> IncomeStatementBlockNonOperatingInterest
fn default() -> IncomeStatementBlockNonOperatingInterest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IncomeStatementBlockNonOperatingInterest
impl<'de> Deserialize<'de> for IncomeStatementBlockNonOperatingInterest
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 IncomeStatementBlockNonOperatingInterest
impl PartialEq for IncomeStatementBlockNonOperatingInterest
Source§fn eq(&self, other: &IncomeStatementBlockNonOperatingInterest) -> bool
fn eq(&self, other: &IncomeStatementBlockNonOperatingInterest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IncomeStatementBlockNonOperatingInterest
Auto Trait Implementations§
impl Freeze for IncomeStatementBlockNonOperatingInterest
impl RefUnwindSafe for IncomeStatementBlockNonOperatingInterest
impl Send for IncomeStatementBlockNonOperatingInterest
impl Sync for IncomeStatementBlockNonOperatingInterest
impl Unpin for IncomeStatementBlockNonOperatingInterest
impl UnwindSafe for IncomeStatementBlockNonOperatingInterest
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