pub struct GetMutualFundsFamilyParams {
pub fund_family: Option<String>,
pub country: Option<String>,
}Expand description
struct for passing parameters to the method get_mutual_funds_family
Fields§
§fund_family: Option<String>Filter by investment company that manages the fund
country: Option<String>Filter by country name or alpha code, e.g., United States or US
Implementations§
Source§impl GetMutualFundsFamilyParams
impl GetMutualFundsFamilyParams
Sourcepub fn builder() -> GetMutualFundsFamilyParamsBuilder
pub fn builder() -> GetMutualFundsFamilyParamsBuilder
Create a new builder for this parameter struct
Trait Implementations§
Source§impl Clone for GetMutualFundsFamilyParams
impl Clone for GetMutualFundsFamilyParams
Source§fn clone(&self) -> GetMutualFundsFamilyParams
fn clone(&self) -> GetMutualFundsFamilyParams
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 GetMutualFundsFamilyParams
impl Debug for GetMutualFundsFamilyParams
Source§impl Default for GetMutualFundsFamilyParams
impl Default for GetMutualFundsFamilyParams
Source§fn default() -> GetMutualFundsFamilyParams
fn default() -> GetMutualFundsFamilyParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMutualFundsFamilyParams
impl<'de> Deserialize<'de> for GetMutualFundsFamilyParams
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 GetMutualFundsFamilyParams
impl RefUnwindSafe for GetMutualFundsFamilyParams
impl Send for GetMutualFundsFamilyParams
impl Sync for GetMutualFundsFamilyParams
impl Unpin for GetMutualFundsFamilyParams
impl UnwindSafe for GetMutualFundsFamilyParams
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