pub struct HistoricalTickLast {
pub time: i64,
pub tick_attrib_last: TickAttribLast,
pub price: f64,
pub size: Decimal,
pub exchange: String,
pub special_conditions: String,
}Expand description
Historical last trade tick.
Fields§
§time: i64Unix timestamp seconds.
tick_attrib_last: TickAttribLastAttributes.
price: f64Price.
size: DecimalSize.
exchange: StringExchange.
special_conditions: StringSpecial conditions.
Trait Implementations§
Source§impl Clone for HistoricalTickLast
impl Clone for HistoricalTickLast
Source§fn clone(&self) -> HistoricalTickLast
fn clone(&self) -> HistoricalTickLast
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HistoricalTickLast
impl Debug for HistoricalTickLast
Source§impl Default for HistoricalTickLast
impl Default for HistoricalTickLast
Source§fn default() -> HistoricalTickLast
fn default() -> HistoricalTickLast
Returns the “default value” for a type. Read more
Source§impl PartialEq for HistoricalTickLast
impl PartialEq for HistoricalTickLast
impl StructuralPartialEq for HistoricalTickLast
Auto Trait Implementations§
impl Freeze for HistoricalTickLast
impl RefUnwindSafe for HistoricalTickLast
impl Send for HistoricalTickLast
impl Sync for HistoricalTickLast
impl Unpin for HistoricalTickLast
impl UnsafeUnpin for HistoricalTickLast
impl UnwindSafe for HistoricalTickLast
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