pub trait Ffi { // Required method fn call( &self, ctx: &mut FfiCtx<'_>, params: Vec<GosValue> ) -> RuntimeResult<Vec<GosValue>>; }
A FFI Object implemented in Rust for Goscript to call