[−][src]Struct in3_sys::eth_log
A linked list of Ethereum Logs
Fields
removed: bool< true when the log was removed, due to a chain reorganization. false if its a valid log
log_index: usize< log index position in the block
transaction_index: usize< transactions index position log was created from
transaction_hash: bytes32_t< hash of the transactions this log was created from
block_hash: bytes32_t< hash of the block where this log was in
block_number: u64< the block number where this log was in
address: address_t< address from which this log originated
data: bytes_t< non-indexed arguments of the log
topics: *mut bytes32_t< array of 0 to 4 32 Bytes DATA of indexed log arguments
topic_count: usize< counter for topics
next: *mut eth_log< pointer to next log in list or NULL
Trait Implementations
impl Clone for eth_log[src]
fn clone(&self) -> eth_log[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for eth_log[src]
impl Debug for eth_log[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,