#[repr(C)]pub struct JSObject {
pub header: JSGCObjectHeader,
pub shape: *mut JSShape,
pub prop: *mut JSProperty,
pub first_weak_ref: *mut JSObject,
}Fields§
§header: JSGCObjectHeader§shape: *mut JSShape§prop: *mut JSProperty§first_weak_ref: *mut JSObjectAuto Trait Implementations§
impl Freeze for JSObject
impl RefUnwindSafe for JSObject
impl !Send for JSObject
impl !Sync for JSObject
impl Unpin for JSObject
impl UnwindSafe for JSObject
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more