db-pool 0.6.0

A thread-safe database pool for running database-tied integration tests in parallel
Documentation
1
2
3
4
5
6
7
8
9
use std::fmt::Debug;

#[derive(Debug)]
pub enum Error<B: Debug, P: Debug, C: Debug, Q: Debug> {
    Build(B),
    Pool(P),
    Connection(C),
    Query(Q),
}