Struct parables_testing::call::Call[][src]

pub struct Call {
    pub sender: Address,
    pub gas: U256,
    pub gas_price: U256,
    pub value: U256,
}

Fields

The sender of the call.

The amount of gas to include in the call.

The price willing to pay for gas during the call (in WEI).

The amount of ethereum attached to the call (in WEI).

Methods

impl Call
[src]

Build a new call with the given sender.

Modify sender of call.

Set the call to have the specified amount of gas.

Set the call to have the specified gas price.

Set the call to have the specified value.

Trait Implementations

impl Debug for Call
[src]

Formats the value using the given formatter. Read more

impl Clone for Call
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Call
[src]

Auto Trait Implementations

impl Send for Call

impl Sync for Call