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

Change in balance, allowed to be Diff::Same.

Change in nonce, allowed to be Diff::Same.

Change in code, allowed to be Diff::Same.

Change in storage, values are not allowed to be Diff::Same.

Methods

impl AccountDiff
[src]

Get Existance projection.

Trait Implementations

impl Debug for AccountDiff
[src]

Formats the value using the given formatter.

impl PartialEq for AccountDiff
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for AccountDiff
[src]

impl Clone for AccountDiff
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for AccountDiff
[src]

Formats the value using the given formatter.