[][src]Struct in3_sys::eth_log

#[repr(C)]pub struct eth_log {
    pub removed: bool,
    pub log_index: usize,
    pub transaction_index: usize,
    pub transaction_hash: bytes32_t,
    pub block_hash: bytes32_t,
    pub block_number: u64,
    pub address: address_t,
    pub data: bytes_t,
    pub topics: *mut bytes32_t,
    pub topic_count: usize,
    pub next: *mut eth_log,
}

Fields

removed: boollog_index: usizetransaction_index: usizetransaction_hash: bytes32_tblock_hash: bytes32_tblock_number: u64address: address_tdata: bytes_ttopics: *mut bytes32_ttopic_count: usizenext: *mut eth_log

Trait Implementations

impl Clone for eth_log[src]

impl Copy for eth_log[src]

impl Debug for eth_log[src]

Auto Trait Implementations

impl !Send for eth_log

impl !Sync for eth_log

impl Unpin for eth_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> 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.