pub struct VlElement {
pub length: u32,
pub collection_address: u64,
pub object_index: u32,
}Expand description
A parsed variable-length element reference (global heap ID).
Fields§
§length: u32Length of the VL data.
collection_address: u64Address of the global heap collection containing the data.
object_index: u32Index of the object within the collection.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VlElement
impl RefUnwindSafe for VlElement
impl Send for VlElement
impl Sync for VlElement
impl Unpin for VlElement
impl UnsafeUnpin for VlElement
impl UnwindSafe for VlElement
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