pg-embed-alternative 0.8.0-rc1

Run a Postgresql database locally on Linux, MacOS or Windows as part of another Rust application or test.
Documentation
1
2
3
4
5
use crate::pg_errors::PgEmbedError;
use std::cell::Cell;

pub type PgResult<T> = Result<T, PgEmbedError>;
pub type PgCommandSync = Box<Cell<std::process::Command>>;