#[repr(C)]pub struct nk_table {
pub seq: c_uint,
pub size: c_uint,
pub keys: [nk_hash; 56],
pub values: [nk_uint; 56],
pub next: *mut nk_table,
pub prev: *mut nk_table,
}Fields§
§seq: c_uint§size: c_uint§keys: [nk_hash; 56]§values: [nk_uint; 56]§next: *mut nk_table§prev: *mut nk_tableTrait Implementations§
Auto Trait Implementations§
impl Freeze for nk_table
impl RefUnwindSafe for nk_table
impl !Send for nk_table
impl !Sync for nk_table
impl Unpin for nk_table
impl UnwindSafe for nk_table
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