pub trait InlineZomeT: Debug {
    fn functions(&self) -> Vec<FunctionName, Global>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
    A: Allocator,
; 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