pg_embed/
pg_types.rs

1use crate::pg_errors::PgEmbedError;
2use std::cell::Cell;
3
4pub type PgResult<T> = Result<T, PgEmbedError>;
5pub type PgCommandSync = Box<Cell<std::process::Command>>;