pub struct Struct_Tcl_HashTable {
pub buckets: *mut *mut Tcl_HashEntry,
pub staticBuckets: [*mut Tcl_HashEntry; 4usize],
pub numBuckets: c_int,
pub numEntries: c_int,
pub rebuildSize: c_int,
pub downShift: c_int,
pub mask: c_int,
pub keyType: c_int,
pub findProc: Option< extern "C" fn(tablePtr: *mut Tcl_HashTable, key: *const c_char) -> *mut Tcl_HashEntry>,
pub createProc: Option< extern "C" fn(tablePtr: *mut Tcl_HashTable, key: *const c_char, newPtr: *mut c_int) -> *mut Tcl_HashEntry>,
pub typePtr: *const Tcl_HashKeyType,
}
Fields
buckets | |
staticBuckets | |
numBuckets | |
numEntries | |
rebuildSize | |
downShift | |
mask | |
keyType | |
findProc | |
createProc | |
typePtr | |
Trait Implementations
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).