Union libquickjs_sys::JSCFunctionType[][src]

#[repr(C)]
pub union JSCFunctionType {
    pub generic: JSCFunction,
    pub generic_magic: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue, argc: c_int, argv: *mut JSValue, magic: c_int) -> JSValue>,
    pub constructor: JSCFunction,
    pub constructor_magic: Option<unsafe extern "C" fn(ctx: *mut JSContext, new_target: JSValue, argc: c_int, argv: *mut JSValue, magic: c_int) -> JSValue>,
    pub constructor_or_func: JSCFunction,
    pub f_f: Option<unsafe extern "C" fn(arg1: f64) -> f64>,
    pub f_f_f: Option<unsafe extern "C" fn(arg1: f64, arg2: f64) -> f64>,
    pub getter: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue) -> JSValue>,
    pub setter: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue, val: JSValue) -> JSValue>,
    pub getter_magic: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue, magic: c_int) -> JSValue>,
    pub setter_magic: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue, val: JSValue, magic: c_int) -> JSValue>,
    pub iterator_next: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue, argc: c_int, argv: *mut JSValue, pdone: *mut c_int, magic: c_int) -> JSValue>,
    // some fields omitted
}

Fields

generic: JSCFunctiongeneric_magic: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue, argc: c_int, argv: *mut JSValue, magic: c_int) -> JSValue>constructor: JSCFunctionconstructor_magic: Option<unsafe extern "C" fn(ctx: *mut JSContext, new_target: JSValue, argc: c_int, argv: *mut JSValue, magic: c_int) -> JSValue>constructor_or_func: JSCFunctionf_f: Option<unsafe extern "C" fn(arg1: f64) -> f64>f_f_f: Option<unsafe extern "C" fn(arg1: f64, arg2: f64) -> f64>getter: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue) -> JSValue>setter: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue, val: JSValue) -> JSValue>getter_magic: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue, magic: c_int) -> JSValue>setter_magic: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue, val: JSValue, magic: c_int) -> JSValue>iterator_next: Option<unsafe extern "C" fn(ctx: *mut JSContext, this_val: JSValue, argc: c_int, argv: *mut JSValue, pdone: *mut c_int, magic: c_int) -> JSValue>

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.