Struct everscale_types::models::transaction::HashUpdate
source · pub struct HashUpdate {
pub old: CellHash,
pub new: CellHash,
}Expand description
Account state hash update.
Fields§
§old: CellHashOld account state hash.
new: CellHashNew account state hash.
Trait Implementations§
source§impl Clone for HashUpdate
impl Clone for HashUpdate
source§fn clone(&self) -> HashUpdate
fn clone(&self) -> HashUpdate
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 HashUpdate
impl Debug for HashUpdate
source§impl<'tlb, C: CellFamily> Load<'tlb, C> for HashUpdate
impl<'tlb, C: CellFamily> Load<'tlb, C> for HashUpdate
source§impl PartialEq<HashUpdate> for HashUpdate
impl PartialEq<HashUpdate> for HashUpdate
source§fn eq(&self, other: &HashUpdate) -> bool
fn eq(&self, other: &HashUpdate) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<C: CellFamily> Store<C> for HashUpdate
impl<C: CellFamily> Store<C> for HashUpdate
source§fn store_into(
&self,
__builder: &mut CellBuilder<C>,
__finalizer: &mut dyn Finalizer<C>
) -> bool
fn store_into( &self, __builder: &mut CellBuilder<C>, __finalizer: &mut dyn Finalizer<C> ) -> bool
Tries to store itself into the cell builder.