Struct common_types::basic_account::BasicAccount[][src]

pub struct BasicAccount {
    pub nonce: U256,
    pub balance: U256,
    pub storage_root: H256,
    pub code_hash: H256,
    pub code_version: U256,
}

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.

code_version: U256

Code version of the account.

Trait Implementations

impl Clone for BasicAccount[src]

impl Debug for BasicAccount[src]

impl Decodable for BasicAccount[src]

impl Encodable for BasicAccount[src]

impl Eq for BasicAccount[src]

impl PartialEq<BasicAccount> for BasicAccount[src]

impl StructuralEq for BasicAccount[src]

impl StructuralPartialEq for BasicAccount[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,