pub type JSNative = Option<unsafe extern "C" fn(cx: *mut JSContext, argc: c_uint, vp: *mut Value) -> bool>;
enum JSNative { None, Some(unsafe extern "C" fn(_: *mut JSContext, _: u32, _: *mut Value) -> bool), }
No value.
Some value of type T.
T