[][src]Enum questrade_rs::SecurityType

pub enum SecurityType {
    Stock,
    Option,
    Bond,
    Right,
    Gold,
    MutualFund,
    Index,
}

Type of security

Variants

Stock

Common and preferred equities, ETFs, ETNs, units, ADRs, etc.

Option

Equity and index options.

Bond

Debentures, notes, bonds, both corporate and government.

Right

Equity or bond rights and warrants.

Gold

Physical gold (coins, wafers, bars).

MutualFund

Canadian or US mutual funds.

Index

Stock indices (e.g., Dow Jones).

Trait Implementations

impl Clone for SecurityType[src]

impl Debug for SecurityType[src]

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

impl PartialEq<SecurityType> for SecurityType[src]

impl Serialize for SecurityType[src]

impl StructuralPartialEq for SecurityType[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.