Enum ethcore::transaction::Action
[−]
[src]
pub enum Action { Create, Call(Address), }
Transaction action type.
Variants
Create
Create creates new contract.
Call(Address)
Calls contract at given address. In the case of a transfer, this is the receiver's address.'
Trait Implementations
impl Debug for Action
[src]
impl Clone for Action
[src]
fn clone(&self) -> Action
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for Action
[src]
fn eq(&self, __arg_0: &Action) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Action) -> bool
This method tests for !=
.
impl Eq for Action
[src]
impl Default for Action
[src]
impl Decodable for Action
[src]
fn decode<D>(decoder: &D) -> Result<Self, DecoderError> where D: Decoder
Decode a value from RLP bytes