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

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

Spec account.

Fields

Builtin contract.

Balance.

Nonce.

Code.

Storage.

Constructor.

Methods

impl Account
[src]

Returns true if account does not have nonce, balance, code and 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 !=.

Auto Trait Implementations

impl Send for Account

impl Sync for Account