pub struct FinancialStatementDetailItem {
pub disclosed_date: String,
pub disclosed_time: String,
pub local_code: String,
pub disclosure_number: String,
pub type_of_document: TypeOfDocument,
pub financial_statement: HashMap<String, String>,
}Expand description
Represents a single financial statement detail item.
Fields§
§disclosed_date: StringDisclosed Date (YYYY-MM-DD)
disclosed_time: StringDisclosed Time (HH:MM:SS)
local_code: StringIssue Code (5-character)
disclosure_number: StringDisclosure Number
Ascending order by disclosure number.
type_of_document: TypeOfDocumentType of Document
financial_statement: HashMap<String, String>Financial Statement Entries
Redundant labels (English) associated with XBRL tags and their values
Trait Implementations§
Source§impl Clone for FinancialStatementDetailItem
impl Clone for FinancialStatementDetailItem
Source§fn clone(&self) -> FinancialStatementDetailItem
fn clone(&self) -> FinancialStatementDetailItem
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 FinancialStatementDetailItem
impl Debug for FinancialStatementDetailItem
Source§impl<'de> Deserialize<'de> for FinancialStatementDetailItem
impl<'de> Deserialize<'de> for FinancialStatementDetailItem
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 FinancialStatementDetailItem
impl PartialEq for FinancialStatementDetailItem
Source§fn eq(&self, other: &FinancialStatementDetailItem) -> bool
fn eq(&self, other: &FinancialStatementDetailItem) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FinancialStatementDetailItem
Auto Trait Implementations§
impl Freeze for FinancialStatementDetailItem
impl RefUnwindSafe for FinancialStatementDetailItem
impl Send for FinancialStatementDetailItem
impl Sync for FinancialStatementDetailItem
impl Unpin for FinancialStatementDetailItem
impl UnwindSafe for FinancialStatementDetailItem
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