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: Uint
Balance.
code: Bytes
Code.
nonce: Uint
Nonce.
storage: BTreeMap<Uint, Uint>
Storage.
Trait Implementations
impl Debug for Account[src]
impl Debug for Accountfn 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 Account[src]
impl PartialEq for Accountfn eq(&self, other: &Account) -> bool[src]
fn eq(&self, other: &Account) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Account) -> bool[src]
fn ne(&self, other: &Account) -> boolThis method tests for !=.
impl Clone for Account[src]
impl Clone for Account