Struct ethcore::trace::trace::Create[][src]

pub struct Create {
    pub from: Address,
    pub value: U256,
    pub gas: U256,
    pub init: Bytes,
}

Description of a create action, either a CREATE operation or a create transction.

Fields

The address of the creator.

The value with which the new account is endowed.

The gas available for the creation init code.

The init code.

Methods

impl Create
[src]

Returns bloom create action bloom. The bloom contains only from address.

Trait Implementations

impl Debug for Create
[src]

Formats the value using the given formatter. Read more

impl Clone for Create
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Create
[src]

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

This method tests for !=.

impl From<ActionParams> for Create
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Create

impl Sync for Create