Struct everscale_types::models::account::Account
source · pub struct Account {
pub address: IntAddr,
pub storage_stat: StorageInfo,
pub last_trans_lt: u64,
pub balance: CurrencyCollection,
pub state: AccountState,
pub init_code_hash: Option<HashBytes>,
}Expand description
Existing account data.
Fields§
§address: IntAddrAccount address.
storage_stat: StorageInfoStorage statistics.
last_trans_lt: u64Logical time after the last transaction execution.
balance: CurrencyCollectionAccount balance for all currencies.
state: AccountStateAccount state.
init_code_hash: Option<HashBytes>Optional initial code hash.
Trait Implementations§
source§impl PartialEq<Account> for Account
impl PartialEq<Account> for Account
impl Eq for Account
impl StructuralEq for Account
impl StructuralPartialEq for Account
Auto Trait Implementations§
impl !RefUnwindSafe for Account
impl Send for Account
impl Sync for Account
impl Unpin for Account
impl !UnwindSafe for Account
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