Trait ethabi::FunctionOutputDecoder[][src]

pub trait FunctionOutputDecoder {
    type Output;
    fn decode(&self, _: &[u8]) -> Result<Self::Output>;
}
[]

Contract functions generated by ethabi-derive

Associated Types

type Output[src][]

Output types of the contract function

Required methods

fn decode(&self, _: &[u8]) -> Result<Self::Output>[src][]

Decodes the given bytes output for the contract function

Implementors