pub struct ObjectArray<'a> { /* private fields */ }
Expand description
An array of anything other than a primitive type.
Implementations§
Source§impl<'a> ObjectArray<'a>
impl<'a> ObjectArray<'a>
pub fn obj_id(&self) -> Id
pub fn stack_trace_serial(&self) -> Serial
Sourcepub fn array_class_obj_id(&self) -> Id
pub fn array_class_obj_id(&self) -> Id
The obj id of the class that this is an array of
Source§impl<'a> ObjectArray<'a>
impl<'a> ObjectArray<'a>
Sourcepub fn elements(&self, id_size: IdSize) -> NullableIds<'_> ⓘ
pub fn elements(&self, id_size: IdSize) -> NullableIds<'_> ⓘ
The obj ids of the objects in the array
Auto Trait Implementations§
impl<'a> Freeze for ObjectArray<'a>
impl<'a> RefUnwindSafe for ObjectArray<'a>
impl<'a> Send for ObjectArray<'a>
impl<'a> Sync for ObjectArray<'a>
impl<'a> Unpin for ObjectArray<'a>
impl<'a> UnwindSafe for ObjectArray<'a>
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