orma 0.3.3

A PostgreSQL ORM written in Rust language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// use std::ops::{Deref};
mod connection;
mod db_error;
mod row;
mod statement;
pub mod tls;

pub use connection::Connection;
pub use db_error::DbError;
pub use row::{Row, SimpleQueryMessage, SimpleQueryRow};
pub use statement::{Statement, ToStatement};
pub use tokio_postgres::types::ToSql;
pub use tokio_postgres::{Client, Config, NoTls, RowStream, Socket};