Struct ethcore_rpc::v1::types::CallRequest [] [src]

pub struct CallRequest {
    pub from: Option<H160>,
    pub to: Option<H160>,
    pub gas_price: Option<U256>,
    pub gas: Option<U256>,
    pub value: Option<U256>,
    pub data: Option<Bytes>,
    pub nonce: Option<U256>,
}

Call request

Fields

From

To

Gas Price

Gas

Value

Data

Nonce

Trait Implementations

impl PartialEq for CallRequest
[src]

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

This method tests for !=.

impl Default for CallRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CallRequest
[src]

Formats the value using the given formatter.

impl Into<Request> for CallRequest
[src]

Performs the conversion.