pub struct FinancialReport {
pub financial_date_time: Option<i64>,
pub fiscal_year: Option<i32>,
pub financial_type: Option<i32>,
pub financial_structure: Option<i32>,
pub financial_item_list: Vec<FinancialItems>,
pub currency_info: Option<String>,
pub accounting_standards: Option<String>,
pub auditor_report: Option<String>,
pub currency_code: Option<String>,
}Fields§
§financial_date_time: Option<i64>§fiscal_year: Option<i32>§financial_type: Option<i32>§financial_structure: Option<i32>§financial_item_list: Vec<FinancialItems>§currency_info: Option<String>§accounting_standards: Option<String>§auditor_report: Option<String>§currency_code: Option<String>Implementations§
Source§impl FinancialReport
impl FinancialReport
Sourcepub fn financial_date_time(&self) -> i64
pub fn financial_date_time(&self) -> i64
Returns the value of financial_date_time, or the default value if financial_date_time is unset.
Sourcepub fn fiscal_year(&self) -> i32
pub fn fiscal_year(&self) -> i32
Returns the value of fiscal_year, or the default value if fiscal_year is unset.
Sourcepub fn financial_type(&self) -> i32
pub fn financial_type(&self) -> i32
Returns the value of financial_type, or the default value if financial_type is unset.
Sourcepub fn financial_structure(&self) -> i32
pub fn financial_structure(&self) -> i32
Returns the value of financial_structure, or the default value if financial_structure is unset.
Sourcepub fn currency_info(&self) -> &str
pub fn currency_info(&self) -> &str
Returns the value of currency_info, or the default value if currency_info is unset.
Sourcepub fn accounting_standards(&self) -> &str
pub fn accounting_standards(&self) -> &str
Returns the value of accounting_standards, or the default value if accounting_standards is unset.
Sourcepub fn auditor_report(&self) -> &str
pub fn auditor_report(&self) -> &str
Returns the value of auditor_report, or the default value if auditor_report is unset.
Sourcepub fn currency_code(&self) -> &str
pub fn currency_code(&self) -> &str
Returns the value of currency_code, or the default value if currency_code is unset.
Trait Implementations§
Source§impl Clone for FinancialReport
impl Clone for FinancialReport
Source§fn clone(&self) -> FinancialReport
fn clone(&self) -> FinancialReport
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 FinancialReport
impl Debug for FinancialReport
Source§impl Default for FinancialReport
impl Default for FinancialReport
Source§impl Message for FinancialReport
impl Message for FinancialReport
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for FinancialReport
impl PartialEq for FinancialReport
impl StructuralPartialEq for FinancialReport
Auto Trait Implementations§
impl Freeze for FinancialReport
impl RefUnwindSafe for FinancialReport
impl Send for FinancialReport
impl Sync for FinancialReport
impl Unpin for FinancialReport
impl UnsafeUnpin for FinancialReport
impl UnwindSafe for FinancialReport
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