Struct common_types::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.

Implementations

impl LogEntry[src]

pub fn bloom(&self) -> Bloom[src]

Calculates the bloom of this log entry.

Trait Implementations

impl Clone for LogEntry[src]

impl Debug for LogEntry[src]

impl Decodable for LogEntry[src]

impl Default for LogEntry[src]

impl Encodable for LogEntry[src]

impl Eq for LogEntry[src]

impl From<Log> for LogEntry[src]

impl MallocSizeOf for LogEntry[src]

impl PartialEq<LogEntry> for LogEntry[src]

impl StructuralEq for LogEntry[src]

impl StructuralPartialEq for LogEntry[src]

Auto Trait Implementations

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> MallocSizeOfExt for T where
    T: MallocSizeOf
[src]

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,