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

pub trait FunctionOutputDecoder {
    type Output;
    fn decode(&self, &[u8]) -> Result<Self::Output, Error>;
}
This is supported on feature="abi" only.

Contract functions generated by ethabi-derive

Associated Types

type Output

This is supported on feature="abi" only.

Output types of the contract function

Loading content...

Required methods

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

This is supported on feature="abi" only.

Decodes the given bytes output for the contract function

Loading content...

Implementors

Loading content...