#[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: bool§log_index: usize§transaction_index: usize§transaction_hash: bytes32_t§block_hash: bytes32_t§block_number: u64§address: address_t§data: bytes_t§topics: *mut bytes32_t§topic_count: usize§next: *mut eth_logTrait Implementations§
Auto Trait Implementations§
impl Freeze for eth_log
impl RefUnwindSafe for eth_log
impl !Send for eth_log
impl !Sync for eth_log
impl Unpin for eth_log
impl UnwindSafe for eth_log
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more