Type Alias JsNativeFunction

pub type JsNativeFunction = Option<unsafe extern "system" fn(callee: *const c_void, isconstructcall: bool, arguments: *const *const c_void, argumentcount: u16, callbackstate: *const c_void) -> *mut c_void>;

Aliased Type§

pub enum JsNativeFunction {
    None,
    Some(unsafe extern "system" fn(*const c_void, bool, *const *const c_void, u16, *const c_void) -> *mut c_void),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "system" fn(*const c_void, bool, *const *const c_void, u16, *const c_void) -> *mut c_void)

Some value of type T.