[][src]Struct in3::eth1::types::Log

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

An ethereum log.

Fields

address: Address

Address from which this log originated

block_hash: Option<Hash>

Hash of the block where this log was in

block_number: Option<U256>

Block number where this log was in

data: Bytes

Non-indexed arguments of the log

log_index: Option<U256>

Log's index position in the block

removed: bool

Indicates whether the log was removed due to a chain reorganization

topics: Vec<Hash>

Vector of 0 to 4 32 Bytes DATA of indexed log arguments

transaction_hash: Option<Hash>

Hash of the transaction this log was created from

transaction_index: Option<U256>

Transaction's index position this log was created from

transaction_log_index: Option<U256>

Log's index position in Transaction

log_type: String

Log type

Trait Implementations

impl Debug for Log[src]

impl<'de> Deserialize<'de> for Log[src]

Auto Trait Implementations

impl RefUnwindSafe for Log

impl Send for Log

impl Sync for Log

impl Unpin for Log

impl UnwindSafe for Log

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,