[][src]Struct questrade_rs::SearchEquitySymbol

pub struct SearchEquitySymbol {
    pub symbol: String,
    pub symbol_id: u32,
    pub description: String,
    pub security_type: SecurityType,
    pub listing_exchange: ListingExchange,
    pub is_quotable: bool,
    pub is_tradable: bool,
    pub currency: Currency,
}

Equity details from a search query

Fields

symbol: String

Symbol name. (EG: BMO)

symbol_id: u32

Internal unique symbol identifier.

description: String

Symbol description.

security_type: SecurityType

Symbol security type.

listing_exchange: ListingExchange

Primary listing exchange of the symbol.

is_quotable: bool

Whether a symbol has live market data.

is_tradable: bool

Whether a symbol is tradable on the platform.

currency: Currency

Symbol currency.

Trait Implementations

impl Clone for SearchEquitySymbol[src]

impl Debug for SearchEquitySymbol[src]

impl<'de> Deserialize<'de> for SearchEquitySymbol[src]

impl PartialEq<SearchEquitySymbol> for SearchEquitySymbol[src]

impl Serialize for SearchEquitySymbol[src]

impl StructuralPartialEq for SearchEquitySymbol[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.