pub struct Ticker {
pub ask: Decimal,
pub ask_quantity: Decimal,
pub bid: Decimal,
pub bid_quantity: Decimal,
pub change: Decimal,
pub change_pct: Decimal,
pub high: Decimal,
pub last: Decimal,
pub low: Decimal,
pub symbol: String,
pub volume: Decimal,
pub vwap: Decimal,
}
Fields§
§ask: Decimal
§ask_quantity: Decimal
§bid: Decimal
§bid_quantity: Decimal
§change: Decimal
§change_pct: Decimal
§high: Decimal
§last: Decimal
§low: Decimal
§symbol: String
§volume: Decimal
§vwap: Decimal
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ticker
impl<'de> Deserialize<'de> for Ticker
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Ticker
Auto Trait Implementations§
impl Freeze for Ticker
impl RefUnwindSafe for Ticker
impl Send for Ticker
impl Sync for Ticker
impl Unpin for Ticker
impl UnwindSafe for Ticker
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