Struct ethcore::trace_types::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

The sending account.

The destination account.

The value transferred to the destination account.

The gas available for executing the call.

The input data provided to the call.

The type of the call.

Methods

impl Call
[src]

Returns call action bloom. The bloom contains from and to addresses.

Trait Implementations

impl Debug for Call
[src]

Formats the value using the given formatter.

impl Clone for Call
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Call
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<ActionParams> for Call
[src]

Performs the conversion.

impl Encodable for Call
[src]

Append a value to the stream

Get rlp-encoded bytes for this instance

impl Decodable for Call
[src]

Decode a value from RLP bytes