Struct ethcore::trace::trace::Call
[−]
[src]
pub struct Call { pub from: Address, pub to: Address, pub value: U256, pub gas: U256, pub input: Bytes, pub call_type: CallType, }
Description of a call action, either a CALL
operation or a message transction.
Fields
from: Address
The sending account.
to: Address
The destination account.
value: U256
The value transferred to the destination account.
gas: U256
The gas available for executing the call.
input: Bytes
The input data provided to the call.
call_type: CallType
The type of the call.
Methods
impl Call
[src]
Trait Implementations
impl Debug for Call
[src]
impl Clone for Call
[src]
fn clone(&self) -> Call
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 Call
[src]
fn eq(&self, __arg_0: &Call) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Call) -> bool
This method tests for !=
.
impl From<ActionParams> for Call
[src]
fn from(p: ActionParams) -> Self
Performs the conversion.
impl Encodable for Call
[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 Call
[src]
fn decode<D>(decoder: &D) -> Result<Self, DecoderError> where D: Decoder
Decode a value from RLP bytes