pub trait EthLogDecode: Send + Sync {
// Required method
fn decode_log(log: &RawLog) -> Result<Self, Error>
where Self: Sized;
}Expand description
A trait for types (events) that can be decoded from a RawLog
pub trait EthLogDecode: Send + Sync {
// Required method
fn decode_log(log: &RawLog) -> Result<Self, Error>
where Self: Sized;
}A trait for types (events) that can be decoded from a RawLog