[][src]Trait ethers_core::abi::ParseLog

pub trait ParseLog {
    type Log;
    fn parse_log(&self, log: RawLog) -> Result<Self::Log, Error>;
}
This is supported on feature="abi" only.

trait common to things (events) that have an associated Log type that can be parsed from a RawLog

Associated Types

type Log

This is supported on feature="abi" only.

the associated Log type that can be parsed from a RawLog by calling parse_log

Loading content...

Required methods

fn parse_log(&self, log: RawLog) -> Result<Self::Log, Error>

This is supported on feature="abi" only.

parse the associated Log type from a RawLog

Loading content...

Implementors

Loading content...