Trait ethers::abi::FunctionOutputDecoder[]

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

Contract functions generated by ethabi-derive

Associated Types

Output types of the contract function

Required methods

Decodes the given bytes output for the contract function

Implementors