Struct ethcore::log_entry::LogEntry
[−]
[src]
pub struct LogEntry { pub address: Address, pub topics: Vec<H256>, pub data: Bytes, }
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]
Trait Implementations
impl Default for LogEntry
[src]
impl Debug for LogEntry
[src]
impl Clone for LogEntry
[src]
fn clone(&self) -> LogEntry
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for LogEntry
[src]
fn eq(&self, __arg_0: &LogEntry) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &LogEntry) -> bool
This method tests for !=
.
impl Eq for LogEntry
[src]
impl Encodable for LogEntry
[src]
fn rlp_append(&self, s: &mut RlpStream)
Append a value to the stream
fn rlp_bytes(&self) -> ElasticArray1024<u8>
Get rlp-encoded bytes for this instance
impl Decodable for LogEntry
[src]
fn decode<D>(decoder: &D) -> Result<Self, DecoderError> where D: Decoder
Decode a value from RLP bytes
impl HeapSizeOf for LogEntry
[src]
fn heap_size_of_children(&self) -> usize
Measure 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::
impl From<Log> for LogEntry
[src]
fn from(l: Log) -> Self
Performs the conversion.