Type Alias http_cache::Result
source · pub type Result<T> = Result<T, BoxError>;Expand description
A Result typedef to use with the BoxError type
Aliased Type§
enum Result<T> {
Ok(T),
Err(Box<dyn Error + Send + Sync, Global>),
}