pub struct HistoricalTickLast {
pub time: i32,
pub tick_attrib_last: TickAttribLast,
pub price: f64,
pub size: i32,
pub exchange: String,
pub special_conditions: String,
}Fields§
§time: i32§tick_attrib_last: TickAttribLast§price: f64§size: i32§exchange: String§special_conditions: StringImplementations§
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 · 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<'de> Deserialize<'de> for HistoricalTickLast
impl<'de> Deserialize<'de> for HistoricalTickLast
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
Source§impl Display for HistoricalTickLast
impl Display 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