[][src]Struct polygon_io::equities::nbbo::NBBO

pub struct NBBO {
    pub ts: i64,
    pub ts_participant: Option<i64>,
    pub ts_trf: Option<i64>,
    pub symbol: String,
    pub bid_exchange: u32,
    pub ask_exchange: u32,
    pub bid_lots: u32,
    pub ask_lots: u32,
    pub bid_price: f32,
    pub ask_price: f32,
    pub tape: u32,
}

Fields

ts: i64ts_participant: Option<i64>ts_trf: Option<i64>symbol: Stringbid_exchange: u32ask_exchange: u32bid_lots: u32ask_lots: u32bid_price: f32ask_price: f32tape: u32

Trait Implementations

impl Debug for NBBO[src]

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

impl Serialize for NBBO[src]

Auto Trait Implementations

impl RefUnwindSafe for NBBO

impl Send for NBBO

impl Sync for NBBO

impl Unpin for NBBO

impl UnwindSafe for NBBO

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, 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.