pub struct EarningsTranscript {Show 13 fields
pub symbol: Option<String>,
pub quarter: Option<String>,
pub year: Option<i32>,
pub date: Option<String>,
pub content: Option<String>,
pub company_name: Option<String>,
pub fiscal_quarter: Option<String>,
pub fiscal_year: Option<i32>,
pub transcript_id: Option<String>,
pub language: Option<String>,
pub duration: Option<i32>,
pub analyst_count: Option<i32>,
pub call_type: Option<String>,
}Expand description
Earnings call transcript data
Fields§
§symbol: Option<String>Company symbol
quarter: Option<String>Quarter (e.g., “Q1”, “Q2”, “Q3”, “Q4”)
year: Option<i32>Calendar year
date: Option<String>Earnings date
content: Option<String>Full transcript content
company_name: Option<String>Company name
fiscal_quarter: Option<String>Quarter fiscal period
fiscal_year: Option<i32>Fiscal year
transcript_id: Option<String>Transcript ID
language: Option<String>Language of transcript
duration: Option<i32>Duration of call (in minutes)
analyst_count: Option<i32>Number of analysts participating
call_type: Option<String>Conference call type (e.g., “Earnings”, “Special”)
Trait Implementations§
Source§impl Clone for EarningsTranscript
impl Clone for EarningsTranscript
Source§fn clone(&self) -> EarningsTranscript
fn clone(&self) -> EarningsTranscript
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 EarningsTranscript
impl Debug for EarningsTranscript
Source§impl<'de> Deserialize<'de> for EarningsTranscript
impl<'de> Deserialize<'de> for EarningsTranscript
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 EarningsTranscript
impl RefUnwindSafe for EarningsTranscript
impl Send for EarningsTranscript
impl Sync for EarningsTranscript
impl Unpin for EarningsTranscript
impl UnwindSafe for EarningsTranscript
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