pub type TypedMapI64F64 = TypedMap<i64, f64>;Aliased Type§
#[repr(C)]pub struct TypedMapI64F64 {
pub header: HeapHeader,
pub buckets: *mut Bucket<i64, f64>,
pub bucket_count: u32,
pub len: u32,
pub tombstone_count: u32,
pub _pad: u32,
}Fields§
§header: HeapHeader§buckets: *mut Bucket<i64, f64>Pointer to bucket array.
bucket_count: u32Number of buckets (always a power of 2).
len: u32Number of live entries.
tombstone_count: u32Number of tombstones.
_pad: u32