Skip to main content

KeyPointersCache

Trait KeyPointersCache 

Source
pub trait KeyPointersCache<KEY>: SealedKeyPointersCache<KEY> { }
Expand description

A cache that caches pointers to keys

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<KEY: Key> KeyPointersCache<KEY> for HeapKeyPointers<KEY>

Available on crate feature alloc only.
Source§

impl<KEY> KeyPointersCache<KEY> for Uncached

Source§

impl<const KEYS: usize, KEY: Key> KeyPointersCache<KEY> for ArrayKeyPointers<KEY, KEYS>