pub struct PolygonQuote {
pub symbol: String,
pub sip_timestamp: i64,
pub exchange_timestamp: i64,
pub bid_price: Decimal,
pub bid_size: i64,
pub ask_price: Decimal,
pub ask_size: i64,
}Fields§
§symbol: String§sip_timestamp: i64§exchange_timestamp: i64§bid_price: Decimal§bid_size: i64§ask_price: Decimal§ask_size: i64Trait Implementations§
Source§impl Clone for PolygonQuote
impl Clone for PolygonQuote
Source§fn clone(&self) -> PolygonQuote
fn clone(&self) -> PolygonQuote
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PolygonQuote
impl Debug for PolygonQuote
Source§impl<'de> Deserialize<'de> for PolygonQuote
impl<'de> Deserialize<'de> for PolygonQuote
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
Auto Trait Implementations§
impl Freeze for PolygonQuote
impl RefUnwindSafe for PolygonQuote
impl Send for PolygonQuote
impl Sync for PolygonQuote
impl Unpin for PolygonQuote
impl UnwindSafe for PolygonQuote
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