pub type JSGetterFunc = Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue) -> JSValue>;
pub enum JSGetterFunc { None, Some(unsafe extern "C" fn(*mut JSContext, JSValue) -> JSValue), }
No value.
Some value of type T.
T