Struct ethcore::receipt::RichReceipt
[−]
[src]
pub struct RichReceipt { pub transaction_hash: H256, pub transaction_index: usize, pub cumulative_gas_used: U256, pub gas_used: U256, pub contract_address: Option<Address>, pub logs: Vec<LogEntry>, pub log_bloom: H2048, pub state_root: Option<H256>, }
Receipt with additional info.
Fields
transaction_hash: H256
Transaction hash.
transaction_index: usize
Transaction index.
cumulative_gas_used: U256
The total gas used in the block following execution of the transaction.
gas_used: U256
The gas used in the execution of the transaction. Note the difference of meaning to Receipt::gas_used
.
contract_address: Option<Address>
Contract address.
logs: Vec<LogEntry>
Logs
log_bloom: H2048
Logs bloom
state_root: Option<H256>
State root
Trait Implementations
impl Debug for RichReceipt
[src]
impl Clone for RichReceipt
[src]
fn clone(&self) -> RichReceipt
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 PartialEq for RichReceipt
[src]
fn eq(&self, __arg_0: &RichReceipt) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &RichReceipt) -> bool
This method tests for !=
.