Trait ethabi::ParseLog

source ·
pub trait ParseLog {
    type Log;

    fn parse_log(&self, log: RawLog) -> Result<Self::Log>;
}
Expand description

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

Required Associated Types

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

Required Methods

parse the associated Log type from a RawLog

Implementors