Struct ethcore::basic_account::BasicAccount
[−]
[src]
pub struct BasicAccount { pub nonce: U256, pub balance: U256, pub storage_root: H256, pub code_hash: H256, }
Basic account type.
Fields
nonce: U256
Nonce of the account.
balance: U256
Balance of the account.
storage_root: H256
Storage root of the account.
code_hash: H256
Code hash of the account.
Trait Implementations
impl Debug for BasicAccount
[src]
impl Clone for BasicAccount
[src]
fn clone(&self) -> BasicAccount
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
impl PartialEq for BasicAccount
[src]
fn eq(&self, __arg_0: &BasicAccount) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &BasicAccount) -> bool
This method tests for !=
.
impl Eq for BasicAccount
[src]
impl Encodable for BasicAccount
[src]
fn rlp_append(&self, s: &mut RlpStream)
Append a value to the stream
fn rlp_bytes(&self) -> ElasticArray1024<u8>
Get rlp-encoded bytes for this instance
impl Decodable for BasicAccount
[src]
fn decode<D>(decoder: &D) -> Result<Self, DecoderError> where D: Decoder
Decode a value from RLP bytes