Enum ethcore::account_provider::Action[][src]

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

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

Append a value to the stream

Get rlp-encoded bytes for this instance

impl Default for Action
[src]

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

impl Eq for Action
[src]

impl PartialEq<Action> 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 Clone for Action
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Action
[src]

Formats the value using the given formatter. Read more

impl Decodable for Action
[src]

Decode a value from RLP bytes

Auto Trait Implementations

impl Send for Action

impl Sync for Action