pub struct MiniTicker {
pub event_type: String,
pub event_time: u64,
pub symbol: String,
pub close: Decimal,
pub open: Decimal,
pub low: Decimal,
pub high: Decimal,
pub volume: Decimal,
pub quote_volume: Decimal,
}
Fields§
§event_type: String
§event_time: u64
§symbol: String
§close: Decimal
§open: Decimal
§low: Decimal
§high: Decimal
§volume: Decimal
§quote_volume: Decimal
Trait Implementations§
Source§impl Clone for MiniTicker
impl Clone for MiniTicker
Source§fn clone(&self) -> MiniTicker
fn clone(&self) -> MiniTicker
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MiniTicker
impl Debug for MiniTicker
Source§impl<'de> Deserialize<'de> for MiniTicker
impl<'de> Deserialize<'de> for MiniTicker
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 MiniTicker
impl RefUnwindSafe for MiniTicker
impl Send for MiniTicker
impl Sync for MiniTicker
impl Unpin for MiniTicker
impl UnwindSafe for MiniTicker
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