#[repr(C)]pub struct AccountBalance {
pub debits_pending: u128,
pub debits_posted: u128,
pub credits_pending: u128,
pub credits_posted: u128,
pub timestamp: u64,
pub reserved: [u8; 56],
}Expand description
Account balance at a point in time (128 bytes).
Used for historical balance queries.
Fields§
§debits_pending: u128Pending debits at this timestamp.
debits_posted: u128Posted debits at this timestamp.
credits_pending: u128Pending credits at this timestamp.
credits_posted: u128Posted credits at this timestamp.
timestamp: u64Timestamp of this balance snapshot.
reserved: [u8; 56]Reserved for future use.
Trait Implementations§
Source§impl Clone for AccountBalance
impl Clone for AccountBalance
Source§fn clone(&self) -> AccountBalance
fn clone(&self) -> AccountBalance
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 AccountBalance
impl Debug for AccountBalance
Source§impl Default for AccountBalance
impl Default for AccountBalance
Source§impl PartialEq for AccountBalance
impl PartialEq for AccountBalance
impl Copy for AccountBalance
impl Eq for AccountBalance
impl StructuralPartialEq for AccountBalance
Auto Trait Implementations§
impl Freeze for AccountBalance
impl RefUnwindSafe for AccountBalance
impl Send for AccountBalance
impl Sync for AccountBalance
impl Unpin for AccountBalance
impl UnwindSafe for AccountBalance
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