pub struct MiniDayTickerEvent {
pub event_time: u64,
pub symbol: String,
pub current_close: String,
pub open: String,
pub high: String,
pub low: String,
pub volume: String,
pub quote_volume: String,
}Fields§
§event_time: u64§symbol: String§current_close: String§open: String§high: String§low: String§volume: String§quote_volume: StringTrait Implementations§
Source§impl Clone for MiniDayTickerEvent
impl Clone for MiniDayTickerEvent
Source§fn clone(&self) -> MiniDayTickerEvent
fn clone(&self) -> MiniDayTickerEvent
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 MiniDayTickerEvent
impl Debug for MiniDayTickerEvent
Source§impl<'de> Deserialize<'de> for MiniDayTickerEvent
impl<'de> Deserialize<'de> for MiniDayTickerEvent
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 MiniDayTickerEvent
impl RefUnwindSafe for MiniDayTickerEvent
impl Send for MiniDayTickerEvent
impl Sync for MiniDayTickerEvent
impl Unpin for MiniDayTickerEvent
impl UnwindSafe for MiniDayTickerEvent
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