pub trait LinkableOperation: Send + Sync {
// Required method
fn link(
&self,
linker: &mut Linker<InstanceRegistry>,
) -> Result<(), KernelError>;
}Expand description
Trait object for operations that can be linked into a Wasmtime linker.