#[repr(C)]pub struct ptr_tbl {
pub tbl_ary: *mut *mut ptr_tbl_ent,
pub tbl_max: UV,
pub tbl_items: UV,
pub tbl_arena: *mut ptr_tbl_arena,
pub tbl_arena_next: *mut ptr_tbl_ent,
pub tbl_arena_end: *mut ptr_tbl_ent,
}
Fields§
§tbl_ary: *mut *mut ptr_tbl_ent
§tbl_max: UV
§tbl_items: UV
§tbl_arena: *mut ptr_tbl_arena
§tbl_arena_next: *mut ptr_tbl_ent
§tbl_arena_end: *mut ptr_tbl_ent
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ptr_tbl
impl RefUnwindSafe for ptr_tbl
impl !Send for ptr_tbl
impl !Sync for ptr_tbl
impl Unpin for ptr_tbl
impl UnwindSafe for ptr_tbl
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