Enum ethcore::trace::trace::Action[][src]

pub enum Action {
    Call(Call),
    Create(Create),
    Suicide(Suicide),
    Reward(Reward),
}

Description of an action that we trace; will be either a call or a create.

Variants

It's a call action.

It's a create action.

Suicide.

Reward

Methods

impl Action
[src]

Returns action bloom.

Trait Implementations

impl Debug for Action
[src]

Formats the value using the given formatter. Read more

impl Clone for Action
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Action
[src]

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

This method tests for !=.

impl Encodable for Action
[src]

Append a value to the stream

Get rlp-encoded bytes for this instance

impl Decodable for Action
[src]

Decode a value from RLP bytes

Auto Trait Implementations

impl Send for Action

impl Sync for Action