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>>;