JSGetterFunc

Type Alias JSGetterFunc 

Source
pub type JSGetterFunc = Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue) -> JSValue>;

Aliased Type§

pub enum JSGetterFunc {
    None,
    Some(unsafe extern "C" fn(*mut JSContext, JSValue) -> JSValue),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut JSContext, JSValue) -> JSValue)

Some value of type T.