pub struct GetMutualFundsListParams {
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 performance_rating: Option<i64>,
pub risk_rating: Option<i64>,
pub page: Option<i64>,
pub outputsize: Option<i64>,
}Expand description
struct for passing parameters to the method get_mutual_funds_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
performance_rating: Option<i64>Filter by performance rating from 0 to 5
risk_rating: Option<i64>Filter by risk rating from 0 to 5
page: Option<i64>Page number
outputsize: Option<i64>Number of records in response
Implementations§
Source§impl GetMutualFundsListParams
impl GetMutualFundsListParams
Sourcepub fn builder() -> GetMutualFundsListParamsBuilder
pub fn builder() -> GetMutualFundsListParamsBuilder
Create a new builder for this parameter struct
Trait Implementations§
Source§impl Clone for GetMutualFundsListParams
impl Clone for GetMutualFundsListParams
Source§fn clone(&self) -> GetMutualFundsListParams
fn clone(&self) -> GetMutualFundsListParams
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 GetMutualFundsListParams
impl Debug for GetMutualFundsListParams
Source§impl Default for GetMutualFundsListParams
impl Default for GetMutualFundsListParams
Source§fn default() -> GetMutualFundsListParams
fn default() -> GetMutualFundsListParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMutualFundsListParams
impl<'de> Deserialize<'de> for GetMutualFundsListParams
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
Auto Trait Implementations§
impl Freeze for GetMutualFundsListParams
impl RefUnwindSafe for GetMutualFundsListParams
impl Send for GetMutualFundsListParams
impl Sync for GetMutualFundsListParams
impl Unpin for GetMutualFundsListParams
impl UnwindSafe for GetMutualFundsListParams
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