Skip to main content

TypedMapI64Ptr

Type Alias TypedMapI64Ptr 

Source
pub type TypedMapI64Ptr = TypedMap<i64, *const u8>;

Aliased Type§

#[repr(C)]
pub struct TypedMapI64Ptr { pub header: HeapHeader, pub buckets: *mut Bucket<i64, *const u8>, pub bucket_count: u32, pub len: u32, pub tombstone_count: u32, pub _pad: u32, }

Fields§

§header: HeapHeader§buckets: *mut Bucket<i64, *const u8>

Pointer to bucket array.

§bucket_count: u32

Number of buckets (always a power of 2).

§len: u32

Number of live entries.

§tombstone_count: u32

Number of tombstones.

§_pad: u32