//! **Postgres** database and connection types.
use TryInto;
pub use PgArguments;
pub use PgConnection;
pub use Postgres;
pub use PgError;
pub use PgRow;
use crateUrl;
/// An alias for [`Pool`], specialized for **Postgres**.
pub type PgPool = Pool;
// used in tests and hidden code in examples
pub async