pub struct GetEtfsListParams {
pub symbol: Option<String>,
pub figi: Option<String>,
pub isin: Option<String>,
pub cusip: Option<String>,
pub cik: Option<String>,
pub country: Option<String>,
pub fund_family: Option<String>,
pub fund_type: Option<String>,
pub page: Option<i64>,
pub outputsize: Option<i64>,
}Expand description
struct for passing parameters to the method get_etfs_list
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
cik: Option<String>The CIK of an instrument for which data is requested
country: Option<String>Filter by country name or alpha code, e.g., United States or US
fund_family: Option<String>Filter by investment company that manages the fund
fund_type: Option<String>Filter by the type of fund
page: Option<i64>Page number
outputsize: Option<i64>Number of records in response
Implementations§
Source§impl GetEtfsListParams
impl GetEtfsListParams
Sourcepub fn builder() -> GetEtfsListParamsBuilder
pub fn builder() -> GetEtfsListParamsBuilder
Create a new builder for this parameter struct
Trait Implementations§
Source§impl Clone for GetEtfsListParams
impl Clone for GetEtfsListParams
Source§fn clone(&self) -> GetEtfsListParams
fn clone(&self) -> GetEtfsListParams
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 GetEtfsListParams
impl Debug for GetEtfsListParams
Source§impl Default for GetEtfsListParams
impl Default for GetEtfsListParams
Source§fn default() -> GetEtfsListParams
fn default() -> GetEtfsListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetEtfsListParams
impl RefUnwindSafe for GetEtfsListParams
impl Send for GetEtfsListParams
impl Sync for GetEtfsListParams
impl Unpin for GetEtfsListParams
impl UnwindSafe for GetEtfsListParams
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