Struct common_types::log_entry::LogEntry [−][src]
A record of execution for a LOG operation.
Fields
address: Address
The address of the contract executing at the point of the LOG operation.
topics: Vec<H256>
The topics associated with the LOG operation.
data: Bytes
The data associated with the LOG operation.
Methods
impl LogEntry[src]
impl LogEntryTrait Implementations
impl Default for LogEntry[src]
impl Default for LogEntryimpl Debug for LogEntry[src]
impl Debug for LogEntryfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for LogEntry[src]
impl Clone for LogEntryfn clone(&self) -> LogEntry[src]
fn clone(&self) -> LogEntryReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for LogEntry[src]
impl PartialEq for LogEntryfn eq(&self, other: &LogEntry) -> bool[src]
fn eq(&self, other: &LogEntry) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &LogEntry) -> bool[src]
fn ne(&self, other: &LogEntry) -> boolThis method tests for !=.
impl Eq for LogEntry[src]
impl Eq for LogEntryimpl HeapSizeOf for LogEntry[src]
impl HeapSizeOf for LogEntryfn heap_size_of_children(&self) -> usize[src]
fn heap_size_of_children(&self) -> usizeMeasure the size of any heap-allocated structures that hang off this value, but not the space taken up by the value itself (i.e. what size_of:: measures, more or less); that space is handled by the implementation of HeapSizeOf for Box below. Read more
impl From<Log> for LogEntry[src]
impl From<Log> for LogEntry