pub struct GetGrowthEstimatesParams {
pub symbol: Option<String>,
pub figi: Option<String>,
pub isin: Option<String>,
pub cusip: Option<String>,
pub country: Option<String>,
pub exchange: Option<String>,
}Expand description
struct for passing parameters to the method get_growth_estimates
Fields§
§symbol: Option<String>Filter by symbol
figi: Option<String>The FIGI of an instrument for which data is requested
isin: Option<String>Filter by international securities identification number (ISIN)
cusip: Option<String>The CUSIP of an instrument for which data is requested. CUSIP access is activating in the <a href="https://twelvedata.com/account/add-ons">Add-ons section
country: Option<String>The country where the instrument is traded, e.g., United States or US
exchange: Option<String>Exchange where instrument is traded
Implementations§
Source§impl GetGrowthEstimatesParams
impl GetGrowthEstimatesParams
Sourcepub fn builder() -> GetGrowthEstimatesParamsBuilder
pub fn builder() -> GetGrowthEstimatesParamsBuilder
Create a new builder for this parameter struct
Trait Implementations§
Source§impl Clone for GetGrowthEstimatesParams
impl Clone for GetGrowthEstimatesParams
Source§fn clone(&self) -> GetGrowthEstimatesParams
fn clone(&self) -> GetGrowthEstimatesParams
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 GetGrowthEstimatesParams
impl Debug for GetGrowthEstimatesParams
Source§impl Default for GetGrowthEstimatesParams
impl Default for GetGrowthEstimatesParams
Source§fn default() -> GetGrowthEstimatesParams
fn default() -> GetGrowthEstimatesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetGrowthEstimatesParams
impl RefUnwindSafe for GetGrowthEstimatesParams
impl Send for GetGrowthEstimatesParams
impl Sync for GetGrowthEstimatesParams
impl Unpin for GetGrowthEstimatesParams
impl UnwindSafe for GetGrowthEstimatesParams
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