#![deny(missing_docs)]
#![doc = include_str!("../README.md")]
pub use postgres_from_row_derive::FromRow;
pub use tokio_postgres;
pub trait FromRow: Sized {
fn from_row(row: &tokio_postgres::Row) -> Self;
fn try_from_row(row: &tokio_postgres::Row) -> Result<Self, tokio_postgres::Error>;
}