pub struct GetForexPairsParams {
pub symbol: Option<String>,
pub currency_base: Option<String>,
pub currency_quote: Option<String>,
pub format: Option<String>,
pub delimiter: Option<String>,
}Expand description
struct for passing parameters to the method get_forex_pairs
Fields§
§symbol: Option<String>The ticker symbol of an instrument for which data is requested
currency_base: Option<String>Filter by currency base
currency_quote: Option<String>Filter by currency quote
format: Option<String>The format of the response data
delimiter: Option<String>The separator used in the CSV response data
Implementations§
Source§impl GetForexPairsParams
impl GetForexPairsParams
Sourcepub fn builder() -> GetForexPairsParamsBuilder
pub fn builder() -> GetForexPairsParamsBuilder
Create a new builder for this parameter struct
Trait Implementations§
Source§impl Clone for GetForexPairsParams
impl Clone for GetForexPairsParams
Source§fn clone(&self) -> GetForexPairsParams
fn clone(&self) -> GetForexPairsParams
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 GetForexPairsParams
impl Debug for GetForexPairsParams
Source§impl Default for GetForexPairsParams
impl Default for GetForexPairsParams
Source§fn default() -> GetForexPairsParams
fn default() -> GetForexPairsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetForexPairsParams
impl RefUnwindSafe for GetForexPairsParams
impl Send for GetForexPairsParams
impl Sync for GetForexPairsParams
impl Unpin for GetForexPairsParams
impl UnwindSafe for GetForexPairsParams
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