pub struct BalanceUpdateEvent {
pub balance: Vec<EventBalance>,
pub event_type: String,
pub event_time: u64,
pub last_account_update_time: u64,
}Fields§
§balance: Vec<EventBalance>§event_type: String§event_time: u64§last_account_update_time: u64Trait 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 (const: unstable) · 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 UnsafeUnpin 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