pub trait CacheTierBuilder<K, V>: Sealed { }Expand description
A builder that can produce a cache tier.
This trait is sealed and cannot be implemented outside this crate.
It’s implemented by CacheBuilder and FallbackBuilder to enable
type-safe cache hierarchy construction.
§Examples
use cachet::Cache;
use tick::Clock;
let clock = Clock::new_tokio();
let cache = Cache::builder::<String, i32>(clock).memory().build();Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".