Enum ethcore::account_provider::Action [−][src]
pub enum Action {
Create,
Call(H160),
}Transaction action type.
Variants
CreateCreate creates new contract.
Call(H160)Calls contract at given address. In the case of a transfer, this is the receiver's address.'
Trait Implementations
impl Encodable for Action[src]
impl Encodable for Actionfn rlp_append(&self, s: &mut RlpStream)[src]
fn rlp_append(&self, s: &mut RlpStream)Append a value to the stream
fn rlp_bytes(&self) -> ElasticArray1024<u8>[src]
fn rlp_bytes(&self) -> ElasticArray1024<u8>Get rlp-encoded bytes for this instance
impl Default for Action[src]
impl Default for Actionimpl Eq for Action[src]
impl Eq for Actionimpl PartialEq<Action> for Action[src]
impl PartialEq<Action> for Actionfn eq(&self, other: &Action) -> bool[src]
fn eq(&self, other: &Action) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Action) -> bool[src]
fn ne(&self, other: &Action) -> boolThis method tests for !=.
impl Clone for Action[src]
impl Clone for Actionfn clone(&self) -> Action[src]
fn clone(&self) -> ActionReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for Action[src]
impl Debug for Actionfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Decodable for Action[src]
impl Decodable for Action