script::dom::bindings::import::module

Type Alias RawHandleObject

source
pub type RawHandleObject = Handle<*mut JSObject>;
Expand description

Reference to a T that has been rooted elsewhere. This is most useful as a parameter type, which guarantees that the T lvalue is properly rooted. See “Move GC Stack Rooting” above.

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

Aliased Type§

struct RawHandleObject {
    pub _phantom_0: PhantomData<UnsafeCell<*mut JSObject>>,
    pub ptr: *const *mut JSObject,
}

Fields§

§_phantom_0: PhantomData<UnsafeCell<*mut JSObject>>§ptr: *const *mut JSObject