pub trait InlineZomeT: Debug {
    fn functions(&self) -> Vec<FunctionName> ;
    fn maybe_call(
        &self,
        api: BoxApi,
        name: &FunctionName,
        input: ExternIO
    ) -> InlineZomeResult<Option<ExternIO>>; 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§