structstd.array_hash_map.ArrayHashMapUnmanaged.KV[src]

A KV pair which has been copied out of the backing store

Fields

key: K
value: V

Source Code

Source code
pub const KV = struct {
    key: K,
    value: V,
}