Struct binance::ws_model::MiniDayTickerEvent
source · [−]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: u64symbol: Stringcurrent_close: Stringopen: Stringhigh: Stringlow: Stringvolume: Stringquote_volume: StringTrait Implementations
sourceimpl Clone for MiniDayTickerEvent
impl Clone for MiniDayTickerEvent
sourcefn clone(&self) -> MiniDayTickerEvent
fn clone(&self) -> MiniDayTickerEvent
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for MiniDayTickerEvent
impl Debug for MiniDayTickerEvent
sourceimpl<'de> Deserialize<'de> for MiniDayTickerEvent
impl<'de> Deserialize<'de> for MiniDayTickerEvent
sourcefn 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
sourceimpl Serialize for MiniDayTickerEvent
impl Serialize for MiniDayTickerEvent
Auto Trait Implementations
impl RefUnwindSafe for MiniDayTickerEvent
impl Send for MiniDayTickerEvent
impl Sync for MiniDayTickerEvent
impl Unpin for MiniDayTickerEvent
impl UnwindSafe for MiniDayTickerEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more