Type Alias MutableHandleFunction

Source
pub type MutableHandleFunction = MutableHandle<*mut JSFunction>;
Expand description

Similar to a handle, but the underlying storage can be changed. This is useful for outparams.

If you want to add additional methods to MutableHandle for a specific specialization, define a MutableHandleOperations specialization containing them.

Aliased Type§

#[repr(C)]
pub struct MutableHandleFunction { pub _phantom_0: PhantomData<UnsafeCell<*mut JSFunction>>, pub ptr: *mut *mut JSFunction, }

Fields§

§_phantom_0: PhantomData<UnsafeCell<*mut JSFunction>>§ptr: *mut *mut JSFunction