pub trait TeaclaveExecutor {
    fn execute(
        &self,
        name: String,
        arguments: FunctionArguments,
        payload: Vec<u8>,
        runtime: FunctionRuntime
    ) -> Result<String>; }

Required Methods

Implementors