pub enum AccountUpdate {
AccountValue(AccountValue),
PortfolioValue(AccountPortfolioValue),
UpdateTime(AccountUpdateTime),
End,
}Expand description
Account update events delivered while streaming high-level account data.
Variants§
AccountValue(AccountValue)
Key/value update describing an account metric.
PortfolioValue(AccountPortfolioValue)
Update describing a position’s valuation data.
UpdateTime(AccountUpdateTime)
Timestamp indicating when the account snapshot was generated.
End
Indicates the end of the account update stream.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AccountUpdate
impl RefUnwindSafe for AccountUpdate
impl Send for AccountUpdate
impl Sync for AccountUpdate
impl Unpin for AccountUpdate
impl UnwindSafe for AccountUpdate
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