Trait JitRuntime

Source
pub trait JitRuntime {
    // Required method
    unsafe fn typed<T, X>(&mut self) -> Result<extern "C" fn() -> X>;
}

Required Methods§

Source

unsafe fn typed<T, X>(&mut self) -> Result<extern "C" fn() -> X>

Returns the function

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§