[][src]Struct fugle::schema::Quote

pub struct Quote {
    pub is_curbing: bool,
    pub is_trial: bool,
    pub is_open_delayed: bool,
    pub is_close_delayed: bool,
    pub is_halting: bool,
    pub is_closed: bool,
    pub total: QuoteTotal,
    pub trial: QuoteTrial,
    pub trade: QuoteTrade,
    pub order: Option<QuoteOrder>,
    pub price_high: QuotePriceHigh,
    pub price_low: QuotePriceLow,
    pub price_open: QuotePriceOpen,
}

Fields

is_curbing: boolis_trial: boolis_open_delayed: boolis_close_delayed: boolis_halting: boolis_closed: booltotal: QuoteTotaltrial: QuoteTrialtrade: QuoteTradeorder: Option<QuoteOrder>price_high: QuotePriceHighprice_low: QuotePriceLowprice_open: QuotePriceOpen

Trait Implementations

impl Debug for Quote[src]

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

impl Serialize for Quote[src]

Auto Trait Implementations

impl RefUnwindSafe for Quote

impl Send for Quote

impl Sync for Quote

impl Unpin for Quote

impl UnwindSafe for Quote

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,