Struct parables_testing::prelude::ethabi::RawLog[][src]

pub struct RawLog {
    pub topics: Vec<H256>,
    pub data: Vec<u8>,
}

Ethereum log.

Fields

Indexed event params are represented as log topics.

Others are just plain data.

Trait Implementations

impl From<(Vec<H256>, Vec<u8>)> for RawLog
[src]

Performs the conversion.

impl PartialEq<RawLog> for RawLog
[src]

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

This method tests for !=.

impl Debug for RawLog
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for RawLog

impl Sync for RawLog