Trait ceres_seal::Host[][src]

pub trait Host: Sized {
    fn module() -> &'static str;
fn name() -> &'static str;
fn wrap(sandbox: &mut Sandbox, args: &[Value]) -> Result<Option<Value>>; fn pack() -> HostCall<&'static str, &'static str, Sandbox> { ... } }
Expand description

Host function trait

Required methods

Host function module

Host function name

Wrap host function

Provided methods

Pack instance

Implementors