Skip to main content

JsObjectRef

Type Alias JsObjectRef 

Source
pub type JsObjectRef = Gc<JsObject>;
Expand description

Reference to a heap-allocated object (GC-managed)

This is now Gc<JsObject> which gives us Ref<'_, JsObject> directly from borrow() calls, matching the old Rc<RefCell<JsObject>> API.

Aliased Typeยง

pub struct JsObjectRef { /* private fields */ }