pub type CacheResult<T> = Result<T, CacheError>;Expand description
Cache result type.
Aliased Type§
pub enum CacheResult<T> {
Ok(T),
Err(CacheError),
}pub type CacheResult<T> = Result<T, CacheError>;Cache result type.
pub enum CacheResult<T> {
Ok(T),
Err(CacheError),
}