Struct common_types::account_diff::AccountDiff [−][src]
pub struct AccountDiff {
pub balance: Diff<U256>,
pub nonce: Diff<U256>,
pub code: Diff<Bytes>,
pub storage: BTreeMap<H256, Diff<H256>>,
}Account diff.
Fields
balance: Diff<U256>
Change in balance, allowed to be Diff::Same.
nonce: Diff<U256>
Change in nonce, allowed to be Diff::Same.
code: Diff<Bytes>
Change in code, allowed to be Diff::Same.
storage: BTreeMap<H256, Diff<H256>>
Change in storage, values are not allowed to be Diff::Same.
Methods
impl AccountDiff[src]
impl AccountDiffTrait Implementations
impl Debug for AccountDiff[src]
impl Debug for AccountDifffn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for AccountDiff[src]
impl PartialEq for AccountDifffn eq(&self, other: &AccountDiff) -> bool[src]
fn eq(&self, other: &AccountDiff) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &AccountDiff) -> bool[src]
fn ne(&self, other: &AccountDiff) -> boolThis method tests for !=.
impl Eq for AccountDiff[src]
impl Eq for AccountDiffimpl Clone for AccountDiff[src]
impl Clone for AccountDifffn clone(&self) -> AccountDiff[src]
fn clone(&self) -> AccountDiffReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Display for AccountDiff[src]
impl Display for AccountDiffAuto Trait Implementations
impl Send for AccountDiff
impl Send for AccountDiffimpl Sync for AccountDiff
impl Sync for AccountDiff