pub type CacheResult<T> = Result<T, CacheError>;
enum CacheResult<T> { Ok(T), Err(CacheError), }
Contains the success value
Contains the error value