Struct web3::types::Log[][src]

pub struct Log {
    pub address: H160,
    pub topics: Vec<H256>,
    pub data: Bytes,
    pub block_hash: Option<H256>,
    pub block_number: Option<U256>,
    pub transaction_hash: Option<H256>,
    pub transaction_index: Option<U256>,
    pub log_index: Option<U256>,
    pub transaction_log_index: Option<U256>,
    pub log_type: Option<String>,
    pub removed: Option<bool>,
}

A log produced by a transaction.

Fields

H160

Topics

Data

Block Hash

Block Number

Transaction Hash

Transaction Index

Log Index in Block

Log Index in Transaction

Log Type

Removed

Methods

impl Log
[src]

Returns true if the log has been removed.

Trait Implementations

impl Debug for Log
[src]

Formats the value using the given formatter. Read more

impl Clone for Log
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Log
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Log

impl Sync for Log