Struct everscale_types::models::block::AccountBlock
source · pub struct AccountBlock {
pub account: CellHash,
pub transactions: AugDict<u64, CurrencyCollection, Lazy<Transaction>>,
pub state_update: Lazy<HashUpdate>,
}Expand description
A group of account transactions.
Fields§
§account: CellHashAccount id.
transactions: AugDict<u64, CurrencyCollection, Lazy<Transaction>>Dictionary with fees and account transactions.
state_update: Lazy<HashUpdate>Account state hashes before and after this block.
Trait Implementations§
source§impl Clone for AccountBlock
impl Clone for AccountBlock
source§fn clone(&self) -> AccountBlock
fn clone(&self) -> AccountBlock
Returns a copy 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 AccountBlock
impl Debug for AccountBlock
source§impl<'a> Load<'a> for AccountBlock
impl<'a> Load<'a> for AccountBlock
source§impl Store for AccountBlock
impl Store for AccountBlock
source§fn store_into(
&self,
builder: &mut CellBuilder,
finalizer: &mut dyn Finalizer
) -> Result<(), Error>
fn store_into( &self, builder: &mut CellBuilder, finalizer: &mut dyn Finalizer ) -> Result<(), Error>
Tries to store itself into the cell builder.