pub async fn with_transaction<F, T>(pool: &SqlxPool, f: F) -> SqlxResult<T>where F: FnOnce(&SqlxPool) -> BoxFuture<'_, Result<T, SqlxError>>,
Generic transaction wrapper for the SqlxPool enum.