pub type jsCallAsFunctionCallback = Option<unsafe extern "C" fn(es: jsExecState, object: jsValue, args: *mut jsValue, argCount: c_int) -> jsValue>;

Aliased Type§

enum jsCallAsFunctionCallback {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: i64, _: *mut i64, _: i32) -> i64),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: i64, _: *mut i64, _: i32) -> i64)

Some value of type T.