Enum ethcore_transaction::Action[][src]

pub enum Action {
    Create,
    Call(Address),
}

Transaction action type.

Variants

Create creates new contract.

Calls contract at given address. In the case of a transfer, this is the receiver's address.'

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 Eq for Action
[src]

impl Default for Action
[src]

Returns the "default value" for a type. Read more

impl Decodable for Action
[src]

Decode a value from RLP bytes

impl Encodable for Action
[src]

Append a value to the stream

Get rlp-encoded bytes for this instance

Auto Trait Implementations

impl Send for Action

impl Sync for Action