pub struct AccountPositionEvent {
pub event_time: u64,
pub last_update_time: u64,
pub balances: Vec<AccountBalance>,
}Expand description
Account position update event (user data stream).
Fields§
§event_time: u64Event time.
last_update_time: u64Time of last account update.
balances: Vec<AccountBalance>Balances.
Trait Implementations§
Source§impl Clone for AccountPositionEvent
impl Clone for AccountPositionEvent
Source§fn clone(&self) -> AccountPositionEvent
fn clone(&self) -> AccountPositionEvent
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 AccountPositionEvent
impl Debug for AccountPositionEvent
Source§impl<'de> Deserialize<'de> for AccountPositionEvent
impl<'de> Deserialize<'de> for AccountPositionEvent
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 AccountPositionEvent
impl RefUnwindSafe for AccountPositionEvent
impl Send for AccountPositionEvent
impl Sync for AccountPositionEvent
impl Unpin for AccountPositionEvent
impl UnwindSafe for AccountPositionEvent
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