pub struct SearchRequestBody {
pub fund: Option<bool>,
pub fund_family_conid_ex: Option<String>,
pub more: Option<bool>,
pub name: Option<bool>,
pub pattern: Option<bool>,
pub referrer: Option<String>,
pub sec_type: Option<GetContractSymbolsRequestQuerySecType>,
pub symbol: String,
}Fields§
§fund: Option<bool>fund search
fund_family_conid_ex: Option<String>§more: Option<bool>§name: Option<bool>Denotes if the symbol value is the ticker symbol or part of the company’s name.
pattern: Option<bool>pattern search
referrer: Option<String>§sec_type: Option<GetContractSymbolsRequestQuerySecType>Available underlying security types:
STK- Represents an underlying as a Stock security type.IND- Represents an underlying as an Index security type.BOND- Represents an underlying as a Bond security type.
symbol: StringThe ticker symbol, bond issuer type, or company name of the equity you are looking to trade.
- Example:
"AAPL".to_string()
Trait Implementations§
Source§impl Clone for SearchRequestBody
impl Clone for SearchRequestBody
Source§fn clone(&self) -> SearchRequestBody
fn clone(&self) -> SearchRequestBody
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 SearchRequestBody
impl Debug for SearchRequestBody
Source§impl Default for SearchRequestBody
impl Default for SearchRequestBody
Source§impl PartialEq for SearchRequestBody
impl PartialEq for SearchRequestBody
Source§impl Serialize for SearchRequestBody
impl Serialize for SearchRequestBody
Source§impl Validate for SearchRequestBody
impl Validate for SearchRequestBody
Source§impl<'v_a> ValidateArgs<'v_a> for SearchRequestBody
impl<'v_a> ValidateArgs<'v_a> for SearchRequestBody
impl StructuralPartialEq for SearchRequestBody
Auto Trait Implementations§
impl Freeze for SearchRequestBody
impl RefUnwindSafe for SearchRequestBody
impl Send for SearchRequestBody
impl Sync for SearchRequestBody
impl Unpin for SearchRequestBody
impl UnsafeUnpin for SearchRequestBody
impl UnwindSafe for SearchRequestBody
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