Function JS_DefinePropertyById3

Source
pub unsafe extern "C" fn JS_DefinePropertyById3(
    cx: *mut JSContext,
    obj: Handle<*mut JSObject>,
    id: Handle<PropertyKey>,
    getter: Option<unsafe extern "C" fn(*mut JSContext, u32, *mut Value) -> bool>,
    setter: Option<unsafe extern "C" fn(*mut JSContext, u32, *mut Value) -> bool>,
    attrs: u32,
) -> bool