| 34 | |
| 35 | #[derive(Debug)] |
| 36 | pub struct Executor { |
| 37 | pool: &'static PgPool, |
| 38 | transaction: Option<Transaction<'static, Postgres>>, |
| 39 | } |
| 40 | |
| 41 | impl Executor { |
| 42 | pub fn new(pool: &'static PgPool) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected