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: Bytes
Raw transaction RLP
transaction: Transaction
Transaction details
Trait Implementations
impl PartialEq for RichRawTransaction
[src]
fn eq(&self, __arg_0: &RichRawTransaction) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &RichRawTransaction) -> bool
This method tests for !=
.
impl Clone for RichRawTransaction
[src]
fn clone(&self) -> RichRawTransaction
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Default for RichRawTransaction
[src]
fn default() -> RichRawTransaction
Returns the "default value" for a type. Read more
impl Debug for RichRawTransaction
[src]
impl From<SignedTransaction> for RichRawTransaction
[src]
fn from(t: SignedTransaction) -> Self
Performs the conversion.