pub type JSNative = Option<unsafe extern "C" fn(_: *mut JSContext, _: u32, _: *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