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

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

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

Required methods

fn parse_log(log: RawLog) -> Result<Self, ExecutionError>

Create a new instance by parsing raw log data.

Loading content...

Implementors

impl ParseLog for RawLog[src]

Loading content...