pub enum FundamentalReportType {
ReportsFinSummary,
ReportSnapshot,
RESC,
CalendarReport,
}Expand description
Which Reuters fundamental report to request.
The wire vocabulary is fixed; unknown strings are rejected by
FromStr as Error::Parse.
Verified against IB Gateway server v220: each variant produced either
a populated XML response or a documented entitlement error (CalendarReport
— news feed subscription required). ReportRatios and
ReportsFinStatements from older IBKR docs are not accepted by TWS today
(code 430 “Missing reportType”) and are intentionally omitted.
Variants§
ReportsFinSummary
Financial summary — wire value "ReportsFinSummary".
ReportSnapshot
Company snapshot — wire value "ReportSnapshot".
RESC
Analyst estimates (Reuters Estimates System Consensus) — wire value "RESC".
CalendarReport
Company calendar (requires news-feed entitlement) — wire value "CalendarReport".
Implementations§
Trait Implementations§
Source§impl Clone for FundamentalReportType
impl Clone for FundamentalReportType
Source§fn clone(&self) -> FundamentalReportType
fn clone(&self) -> FundamentalReportType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for FundamentalReportType
impl ComposeSchema for FundamentalReportType
Source§impl Debug for FundamentalReportType
impl Debug for FundamentalReportType
Source§impl Default for FundamentalReportType
impl Default for FundamentalReportType
Source§fn default() -> FundamentalReportType
fn default() -> FundamentalReportType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FundamentalReportType
impl<'de> Deserialize<'de> for FundamentalReportType
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 Display for FundamentalReportType
impl Display for FundamentalReportType
Source§impl FromStr for FundamentalReportType
impl FromStr for FundamentalReportType
Source§impl Hash for FundamentalReportType
impl Hash for FundamentalReportType
Source§impl PartialEq for FundamentalReportType
impl PartialEq for FundamentalReportType
Source§fn eq(&self, other: &FundamentalReportType) -> bool
fn eq(&self, other: &FundamentalReportType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FundamentalReportType
impl Serialize for FundamentalReportType
Source§impl ToSchema for FundamentalReportType
impl ToSchema for FundamentalReportType
impl Copy for FundamentalReportType
impl Eq for FundamentalReportType
impl StructuralPartialEq for FundamentalReportType
Auto Trait Implementations§
impl Freeze for FundamentalReportType
impl RefUnwindSafe for FundamentalReportType
impl Send for FundamentalReportType
impl Sync for FundamentalReportType
impl Unpin for FundamentalReportType
impl UnsafeUnpin for FundamentalReportType
impl UnwindSafe for FundamentalReportType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.