pub struct BalanceUpdateEvent {
pub event_time: u64,
pub asset: String,
pub balance_delta: f64,
pub clear_time: u64,
}Expand description
Balance update event (user data stream).
Fields§
§event_time: u64Event time.
asset: StringAsset.
balance_delta: f64Balance delta.
clear_time: u64Clear time.
Trait Implementations§
Source§impl Clone for BalanceUpdateEvent
impl Clone for BalanceUpdateEvent
Source§fn clone(&self) -> BalanceUpdateEvent
fn clone(&self) -> BalanceUpdateEvent
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 BalanceUpdateEvent
impl Debug for BalanceUpdateEvent
Source§impl<'de> Deserialize<'de> for BalanceUpdateEvent
impl<'de> Deserialize<'de> for BalanceUpdateEvent
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 BalanceUpdateEvent
impl RefUnwindSafe for BalanceUpdateEvent
impl Send for BalanceUpdateEvent
impl Sync for BalanceUpdateEvent
impl Unpin for BalanceUpdateEvent
impl UnwindSafe for BalanceUpdateEvent
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