usehydracache_db::DbCacheError;usethiserror::Error;/// Error type returned by SQLx-facing cache helpers.
#[derive(Debug, Error)]pubenumSqlxCacheError{/// The generic database cache adapter or underlying cache failed.
#[error(transparent)]
Cache(#[from] DbCacheError),}/// SQLx adapter result type.
pubtypeResult<T>=std::result::Result<T, SqlxCacheError>;