pub struct FeedsQuery {Show 14 fields
pub since: Option<String>,
pub until: Option<String>,
pub aggregator: Option<String>,
pub actionability: Option<bool>,
pub sentiment_min: Option<i64>,
pub sentiment_max: Option<i64>,
pub exchange: Option<String>,
pub symbol: Option<String>,
pub limit: Option<u32>,
pub cursor: Option<String>,
pub corp_activity: Option<Vec<String>>,
pub market: Option<Vec<String>>,
pub market_country: Option<Vec<String>>,
pub economic_category: Option<Vec<String>>,
}Expand description
Query params for feeds_list. Build with FeedsQuery::default() then set fields.
The tag-dimension fields (corp_activity, market, market_country,
economic_category) filter by tag: values within one dimension are OR’d, and
the dimensions are AND’d together. They serialize as a single comma-separated
query param (e.g. ?market_country=US,AE). See tags_list for valid values.
Fields§
§since: Option<String>§until: Option<String>§aggregator: Option<String>§actionability: Option<bool>§sentiment_min: Option<i64>§sentiment_max: Option<i64>§exchange: Option<String>§symbol: Option<String>§limit: Option<u32>§cursor: Option<String>§corp_activity: Option<Vec<String>>§market: Option<Vec<String>>§market_country: Option<Vec<String>>Any ISO 3166-1 alpha-2 country code (e.g. “US”, “AE”), not only the codes
tags_list returns.
economic_category: Option<Vec<String>>Trait Implementations§
Source§impl Clone for FeedsQuery
impl Clone for FeedsQuery
Source§fn clone(&self) -> FeedsQuery
fn clone(&self) -> FeedsQuery
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 Debug for FeedsQuery
impl Debug for FeedsQuery
Source§impl Default for FeedsQuery
impl Default for FeedsQuery
Source§fn default() -> FeedsQuery
fn default() -> FeedsQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FeedsQuery
impl RefUnwindSafe for FeedsQuery
impl Send for FeedsQuery
impl Sync for FeedsQuery
impl Unpin for FeedsQuery
impl UnsafeUnpin for FeedsQuery
impl UnwindSafe for FeedsQuery
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