Struct ethjson::blockchain::account::Account[][src]

pub struct Account {
    pub balance: Uint,
    pub code: Bytes,
    pub nonce: Uint,
    pub storage: BTreeMap<Uint, Uint>,
}

Blockchain test account deserializer.

Fields

Balance.

Code.

Nonce.

Storage.

Trait Implementations

impl Debug for Account
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Account
[src]

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

This method tests for !=.

impl Clone for Account
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Account

impl Sync for Account