pub struct ArrayData {
pub header: ObjectHeader,
pub elements: Vec<RtObject>,
pub capacity: usize,
}Expand description
Data for an array object.
Fields§
§header: ObjectHeaderObject header.
elements: Vec<RtObject>Array elements.
capacity: usizeCapacity (for pre-allocated arrays).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArrayData
impl RefUnwindSafe for ArrayData
impl Send for ArrayData
impl Sync for ArrayData
impl Unpin for ArrayData
impl UnsafeUnpin for ArrayData
impl UnwindSafe for ArrayData
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