Enum ethcore::trace_types::trace::Action
[−]
[src]
pub enum Action { Call(Call), Create(Create), Suicide(Suicide), }
Description of an action that we trace; will be either a call or a create.
Variants
Call(Call)
It's a call action.
Create(Create)
It's a create action.
Suicide(Suicide)
Suicide.
Methods
impl Action
[src]
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 Encodable for Action
[src]
fn rlp_append(&self, s: &mut RlpStream)
Append a value to the stream
fn rlp_bytes(&self) -> ElasticArray1024<u8>
Get rlp-encoded bytes for this instance
impl Decodable for Action
[src]
fn decode<D>(decoder: &D) -> Result<Self, DecoderError> where D: Decoder
Decode a value from RLP bytes