pub type AcquireThenQueryError = AcquireThenError<QueryError>;
Expand description
An acquire_then
error whose function returns a result with a query error.
Aliased Type§
enum AcquireThenQueryError {
Acquire(AcquireError),
Join(JoinError),
Inner(QueryError),
}
Variants§
Acquire(AcquireError)
Failed to acquire a DB connection.
Join(JoinError)
The tokio spawn blocking task failed to join.
Inner(QueryError)
The error returned by the acquire_then
function result.