pub struct ObjectArray(pub Mutex<Vec<Value>>);Expand description
A GC-traced mutable array of Values (backs object-array).
Tuple Fields§
§0: Mutex<Vec<Value>>Implementations§
Trait Implementations§
Source§impl Debug for ObjectArray
impl Debug for ObjectArray
Source§impl Trace for ObjectArray
impl Trace for ObjectArray
fn trace(&self, visitor: &mut MarkVisitor)
fn gc_size_extra(&self) -> usize
Auto Trait Implementations§
impl !Freeze for ObjectArray
impl !Send for ObjectArray
impl !Sync for ObjectArray
impl RefUnwindSafe for ObjectArray
impl Unpin for ObjectArray
impl UnsafeUnpin for ObjectArray
impl UnwindSafe for ObjectArray
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