Struct ethcore_rpc::v1::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: String, }
Log
Fields
address: H160
H160
topics: Vec<H256>
Topics
data: Bytes
Data
block_hash: Option<H256>
Block Hash
block_number: Option<U256>
Block Number
transaction_hash: Option<H256>
Transaction Hash
transaction_index: Option<U256>
Transaction Index
log_index: Option<U256>
Log Index in Block
transaction_log_index: Option<U256>
Log Index in Transaction
log_type: String
Log Type
Trait Implementations
impl Clone for Log
[src]
fn clone(&self) -> Log
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 Hash for Log
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
Feeds a slice of this type into the state provided.
impl Eq for Log
[src]
impl PartialEq for Log
[src]
fn eq(&self, __arg_0: &Log) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Log) -> bool
This method tests for !=
.
impl Debug for Log
[src]
impl From<LocalizedLogEntry> for Log
[src]
fn from(e: LocalizedLogEntry) -> Log
Performs the conversion.