Trait ethabi_next::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

Loading content...

Required methods

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

Decodes the given bytes output for the contract function

Loading content...

Implementors

Loading content...