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