petl 0.1.0

Framework of piped ETL
Documentation
1
2
3
4
5
6
7
pub mod config;
pub mod extract;
pub mod load;
pub mod traits;

pub trait Postgres: extract::PgExtractExt + load::PgLoadExt {}
impl<T> Postgres for T where T: extract::PgExtractExt + load::PgLoadExt {}