Struct ethabi::RawLog [] [src]

pub struct RawLog {
    pub topics: Vec<Hash>,
    pub data: Bytes,
}

Ethereum log.

Fields

Indexed event params are represented as log topics.

Others are just plain data.

Trait Implementations

impl Debug for RawLog
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for RawLog
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<(Vec<Hash>, Bytes)> for RawLog
[src]

[src]

Performs the conversion.