pub type Result<T> = Result<T, CacheError>;Expand description
Result type returned by cache operations.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(CacheError),
}pub type Result<T> = Result<T, CacheError>;Result type returned by cache operations.
pub enum Result<T> {
Ok(T),
Err(CacheError),
}