pub trait FunctionOutputDecoder {
    type Output;

    fn decode(&self, _: &[u8]) -> Result<Self::Output>;
}
Expand description

Contract functions generated by ethabi-derive

Required Associated Types§

Output types of the contract function

Required Methods§

Decodes the given bytes output for the contract function

Implementors§