pub struct TranscriptSummary {
pub symbol: Option<String>,
pub company_name: Option<String>,
pub quarter: Option<String>,
pub year: Option<i32>,
pub date: Option<String>,
pub is_available: Option<bool>,
pub duration: Option<i32>,
pub excerpt: Option<String>,
pub fiscal_quarter: Option<String>,
pub fiscal_year: Option<i32>,
pub call_type: Option<String>,
pub last_updated: Option<String>,
}Expand description
Earnings call transcript list/summary
Fields§
§symbol: Option<String>Company symbol
company_name: Option<String>Company name
quarter: Option<String>Quarter
year: Option<i32>Calendar year
date: Option<String>Earnings date
is_available: Option<bool>Transcript availability status
duration: Option<i32>Call duration in minutes
excerpt: Option<String>Transcript excerpt or summary
fiscal_quarter: Option<String>Fiscal quarter
fiscal_year: Option<i32>Fiscal year
call_type: Option<String>Conference call type
last_updated: Option<String>Last updated timestamp
Trait Implementations§
Source§impl Clone for TranscriptSummary
impl Clone for TranscriptSummary
Source§fn clone(&self) -> TranscriptSummary
fn clone(&self) -> TranscriptSummary
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 TranscriptSummary
impl Debug for TranscriptSummary
Source§impl<'de> Deserialize<'de> for TranscriptSummary
impl<'de> Deserialize<'de> for TranscriptSummary
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
Auto Trait Implementations§
impl Freeze for TranscriptSummary
impl RefUnwindSafe for TranscriptSummary
impl Send for TranscriptSummary
impl Sync for TranscriptSummary
impl Unpin for TranscriptSummary
impl UnwindSafe for TranscriptSummary
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