pub trait CacheImpl: PrivateCacheImpl { }
Expand description

Trait implemented by all cache types

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T: CacheImpl> CacheImpl for &mut T

Implementors§

source§

impl CacheImpl for NoCache

source§

impl<const PAGE_COUNT: usize> CacheImpl for PagePointerCache<PAGE_COUNT>

source§

impl<const PAGE_COUNT: usize> CacheImpl for PageStateCache<PAGE_COUNT>

source§

impl<const PAGE_COUNT: usize, KEY: Eq, const KEYS: usize> CacheImpl for KeyPointerCache<PAGE_COUNT, KEY, KEYS>