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

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

Contract functions generated by ethabi-derive

Associated Types

type Output[src]

Output types of the contract function

Loading content...

Required methods

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

Decodes the given bytes output for the contract function

Loading content...

Implementors

Loading content...