pub trait FunctionOutputDecoder { type Output; // Required method fn decode(&self, _: &[u8]) -> Result<Self::Output, Error>; }
Contract functions generated by ethabi-derive
Output types of the contract function
Decodes the given bytes output for the contract function