pub struct GetSymbolSearchParams {
pub symbol: String,
pub outputsize: Option<i64>,
pub show_plan: Option<bool>,
}Expand description
struct for passing parameters to the method get_symbol_search
Fields§
§symbol: StringSymbol to search. Supports:
- Ticker symbol of instrument.
- International securities identification number (ISIN).
- Financial instrument global identifier (FIGI).
- Composite FIGI.
- Share Class FIGI.
outputsize: Option<i64>Number of matches in response. Max 120
show_plan: Option<bool>Adds info on which plan symbol is available.
Implementations§
Source§impl GetSymbolSearchParams
impl GetSymbolSearchParams
Sourcepub fn builder() -> GetSymbolSearchParamsBuilder
pub fn builder() -> GetSymbolSearchParamsBuilder
Create a new builder for this parameter struct
Trait Implementations§
Source§impl Clone for GetSymbolSearchParams
impl Clone for GetSymbolSearchParams
Source§fn clone(&self) -> GetSymbolSearchParams
fn clone(&self) -> GetSymbolSearchParams
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 GetSymbolSearchParams
impl Debug for GetSymbolSearchParams
Source§impl Default for GetSymbolSearchParams
impl Default for GetSymbolSearchParams
Source§fn default() -> GetSymbolSearchParams
fn default() -> GetSymbolSearchParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetSymbolSearchParams
impl RefUnwindSafe for GetSymbolSearchParams
impl Send for GetSymbolSearchParams
impl Sync for GetSymbolSearchParams
impl Unpin for GetSymbolSearchParams
impl UnwindSafe for GetSymbolSearchParams
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