pub struct SlotTable { /* private fields */ }Expand description
Parsed slot table — an indexed collection of slot entries.
Binary format (v2): count(u16), then count variable-length entries of
[slot_id(u16), name_str_idx(u32), type_hint(u8), source(u8), default_len(u16), default_bytes([u8; default_len])].
Minimum entry size: 10 bytes (when default_len = 0).
Implementations§
Trait Implementations§
impl Eq for SlotTable
impl StructuralPartialEq for SlotTable
Auto Trait Implementations§
impl Freeze for SlotTable
impl RefUnwindSafe for SlotTable
impl Send for SlotTable
impl Sync for SlotTable
impl Unpin for SlotTable
impl UnsafeUnpin for SlotTable
impl UnwindSafe for SlotTable
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