Trait parables_testing::prelude::ethabi::ContractFunction[][src]

pub trait ContractFunction {
    type Output;
    fn encoded(&self) -> Vec<u8>;
fn output(&self, Vec<u8>) -> Result<Self::Output, Error>; }

Contract functions generated by ethabi-derive

Associated Types

Output types of the contract function

Required Methods

Important traits for Vec<u8>

Encodes the input for the contract function

Decodes the given bytes output for the contract function

Implementors