[][src]Struct web30::types::Log

pub struct Log {
    pub removed: Option<bool>,
    pub log_index: Option<Uint256>,
    pub transaction_index: Option<Uint256>,
    pub transaction_hash: Option<Data>,
    pub block_hash: Option<Data>,
    pub block_number: Option<Uint256>,
    pub address: Address,
    pub data: Data,
    pub topics: Vec<Data>,
    pub type_: Option<String>,
}

Fields

removed: Option<bool>

true when the log was removed, due to a chain reorganization. false if its a valid log.

log_index: Option<Uint256>

integer of the log index position in the block. null when its pending log.

transaction_index: Option<Uint256>

integer of the transactions index position log was created from. null when its pending log.

transaction_hash: Option<Data>

hash of the transactions this log was created from. null when its pending log.

block_hash: Option<Data>

hash of the block where this log was in. null when its pending. null when its pending log.

block_number: Option<Uint256>

the block number where this log was in. null when its pending. null when its pending log.

address: Address

20 Bytes - address from which this log originated.

data: Data

contains the non-indexed arguments of the log.

topics: Vec<Data>

Array of 0 to 4 32 Bytes DATA of indexed log arguments. (In solidity: The first topic is the hash of the signature of the event (e.g. Deposit(address,bytes32,uint256)), except you declared the event with the anonymous specifier.)

type_: Option<String>

Trait Implementations

impl Clone for Log[src]

impl Debug for Log[src]

impl Default for Log[src]

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

impl Eq for Log[src]

impl PartialEq<Log> for Log[src]

impl Serialize for Log[src]

impl StructuralEq for Log[src]

impl StructuralPartialEq 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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,