pub struct OutboundAccountPositionEvent {
pub event_time: Timestamp,
pub last_account_update: Timestamp,
pub balances: Vec<AccountBalance>,
}Expand description
Account-wide balance snapshot pushed whenever a balance changes.
Carries the full per-asset state — easier to consume than reconciling
individual BalanceUpdate deltas.
Fields§
§event_time: TimestampEvent time.
last_account_update: TimestampAccount last-update time (matches the corresponding REST snapshot).
balances: Vec<AccountBalance>Trait Implementations§
Source§impl Debug for OutboundAccountPositionEvent
impl Debug for OutboundAccountPositionEvent
Source§impl<'de> Deserialize<'de> for OutboundAccountPositionEvent
impl<'de> Deserialize<'de> for OutboundAccountPositionEvent
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
Source§impl PartialEq for OutboundAccountPositionEvent
impl PartialEq for OutboundAccountPositionEvent
Source§fn eq(&self, other: &OutboundAccountPositionEvent) -> bool
fn eq(&self, other: &OutboundAccountPositionEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OutboundAccountPositionEvent
Auto Trait Implementations§
impl Freeze for OutboundAccountPositionEvent
impl RefUnwindSafe for OutboundAccountPositionEvent
impl Send for OutboundAccountPositionEvent
impl Sync for OutboundAccountPositionEvent
impl Unpin for OutboundAccountPositionEvent
impl UnsafeUnpin for OutboundAccountPositionEvent
impl UnwindSafe for OutboundAccountPositionEvent
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