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

pub struct RichRawTransaction {
    pub raw: Bytes,
    pub transaction: Transaction,
}

Geth-compatible output for eth_signTransaction method

Fields

Raw transaction RLP

Transaction details

Trait Implementations

impl PartialEq for RichRawTransaction
[src]

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

This method tests for !=.

impl Clone for RichRawTransaction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for RichRawTransaction
[src]

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

impl Debug for RichRawTransaction
[src]

Formats the value using the given formatter.

impl From<SignedTransaction> for RichRawTransaction
[src]

Performs the conversion.