pub struct TicksBatchItem {
pub ask: String,
pub bid: String,
pub change: String,
pub epoch: i64,
pub quote: String,
pub symbol: String,
}
Fields§
§ask: String
Market ask at the epoch\n
bid: String
Market bid at the epoch\n
change: String
Daily percentage change\n
epoch: i64
Epoch time of the tick\n
quote: String
Market value at the epoch\n
symbol: String
Symbol\n
Trait Implementations§
Source§impl Clone for TicksBatchItem
impl Clone for TicksBatchItem
Source§fn clone(&self) -> TicksBatchItem
fn clone(&self) -> TicksBatchItem
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 TicksBatchItem
impl Debug for TicksBatchItem
Source§impl<'de> Deserialize<'de> for TicksBatchItem
impl<'de> Deserialize<'de> for TicksBatchItem
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 TicksBatchItem
impl RefUnwindSafe for TicksBatchItem
impl Send for TicksBatchItem
impl Sync for TicksBatchItem
impl Unpin for TicksBatchItem
impl UnwindSafe for TicksBatchItem
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