Crate solana_libra_vm_cache_map

Source
Expand description

A map used for VM runtime caches. The data structures are highly specialized for the VM runtime and are probably not useful outside of it.

Structs§

Arena
A thread-safe variant of typed_arena::Arena.
CacheMap
A map custom designed for the VM runtime caches. Allocations are done in an Arena instead of directly in a hash table, which allows for new entries to be added while existing entries are borrowed out.

Type Aliases§

CacheRefMap
The most common case of CacheMap, where references to stored values are handed out.