pub type CacheGetFuture<'a> = Pin<Box<dyn Future<Output = Result<Option<Vec<u8>>>> + Send + 'a>>;
Future type for cache get operations
pub struct CacheGetFuture<'a> { /* private fields */ }