chuchi-postgres 0.2.4

A wrapper around tokio-postgres to simplify working with Postgres databases.
Documentation
pub mod info;
pub use info::Info;

pub mod column;

pub mod table_owned;
pub use table_owned::TableOwned;

pub mod table;
pub use table::Table;

use crate::row::{FromRowOwned, NamedColumns, ToRowStatic};

mod util;

pub trait TableTemplate:
	FromRowOwned + NamedColumns + ToRowStatic + Sized
{
	fn table_info() -> Info;
}