pub trait ContractFunctionSet {
    // Required method
    fn call(
        &self,
        func: &Symbol,
        host: &Host,
        args: &[RawVal]
    ) -> Option<RawVal>;
}

Required Methods§

source

fn call(&self, func: &Symbol, host: &Host, args: &[RawVal]) -> Option<RawVal>

Implementors§