[][src]Trait ethers_core::abi::FunctionOutputDecoder

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

Contract functions generated by ethabi-derive

Associated Types

type Output

Output types of the contract function

Loading content...

Required methods

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

Decodes the given bytes output for the contract function

Loading content...

Implementors

Loading content...