Skip to main content

TypedMapStringI64

Type Alias TypedMapStringI64 

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

Aliased Type§

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

Fields§

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

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