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

Required Methods§

source

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

Implementors§