Type Definition cachedb::DynResult

source · []
pub type DynResult<T> = Result<T, Box<dyn Error>>;
Expand description

Result type that boxes the error. Allows constructors to return arbitrary errors.