pub struct GetPriceTargetParams {
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_price_target
Fields§
§symbol: Option<String>Filter by symbol
figi: Option<String>Filter by financial instrument global identifier (FIGI)
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>Filter by country name or alpha code, e.g., United States or US
exchange: Option<String>Filter by exchange name
Implementations§
Source§impl GetPriceTargetParams
impl GetPriceTargetParams
Sourcepub fn builder() -> GetPriceTargetParamsBuilder
pub fn builder() -> GetPriceTargetParamsBuilder
Create a new builder for this parameter struct
Trait Implementations§
Source§impl Clone for GetPriceTargetParams
impl Clone for GetPriceTargetParams
Source§fn clone(&self) -> GetPriceTargetParams
fn clone(&self) -> GetPriceTargetParams
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 GetPriceTargetParams
impl Debug for GetPriceTargetParams
Source§impl Default for GetPriceTargetParams
impl Default for GetPriceTargetParams
Source§fn default() -> GetPriceTargetParams
fn default() -> GetPriceTargetParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetPriceTargetParams
impl RefUnwindSafe for GetPriceTargetParams
impl Send for GetPriceTargetParams
impl Sync for GetPriceTargetParams
impl Unpin for GetPriceTargetParams
impl UnwindSafe for GetPriceTargetParams
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