Trait ethcontract::contract::ParseLog[][src]

pub trait ParseLog: Sized {
    fn parse_log(log: RawLog) -> Result<Self, ExecutionError>;
}
Expand description

Trait for parsing a transaction log into an some event data when the expected event type is not known.

Required methods

Create a new instance by parsing raw log data.

Implementors