pub trait InlineZomeT: Debug {
    fn functions(&self) -> Vec<FunctionName, Global> ;
    fn maybe_call(
        &self,
        api: Box<dyn HostFnApiT + 'static, Global>,
        name: &FunctionName,
        input: ExternIO
    ) -> Result<Option<ExternIO>, InlineZomeError>; fn uuid(&self) -> String; fn get_global(&self, name: &str) -> Option<u8>; }

Required Methods§

Get the functions for this InlineZome.

Make a call to an inline zome function. If the function doesn’t exist, return None.

Accessor

Get a global value for this zome.

Implementors§