[][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<String>,
    pub block_hash: Option<String>,
    pub block_number: Option<Uint256>,
    pub address: Address,
    pub data: Vec<u8>,
    pub topics: Vec<String>,
    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<String>

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

block_hash: Option<String>

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: Vec<u8>

contains the non-indexed arguments of the log.

topics: Vec<String>

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]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Log[src]

impl Debug for Log[src]

impl Serialize for Log[src]

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

Auto Trait Implementations

impl Send for Log

impl Sync for Log

Blanket Implementations

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

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T