Struct ethcore::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]
Trait Implementations
impl Debug for AccountDiff
[src]
impl PartialEq for AccountDiff
[src]
fn eq(&self, __arg_0: &AccountDiff) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &AccountDiff) -> bool
This method tests for !=
.
impl Eq for AccountDiff
[src]
impl Clone for AccountDiff
[src]
fn clone(&self) -> AccountDiff
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more