Struct block::Transaction [] [src]

pub struct Transaction {
    pub nonce: U256,
    pub gas_price: Gas,
    pub gas_limit: Gas,
    pub action: TransactionAction,
    pub value: U256,
    pub signature: TransactionSignature,
    pub input: Vec<u8>,
}

Fields

Methods

impl Transaction
[src]

Trait Implementations

impl Clone for Transaction
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Transaction
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Transaction
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for Transaction
[src]

impl Encodable for Transaction
[src]

[src]

Append a value to the stream

[src]

Get rlp-encoded bytes for this instance

impl Decodable for Transaction
[src]

[src]

Decode a value from RLP bytes

impl RlpHash for Transaction
[src]

[src]