postg 0.1.7

Embedded PostgreSQL manager for Rust
Documentation
1
2
3
4
5
6
7
8
use sqlx::{PgConnection, Connection};
use futures::StreamExt;
async fn test(conn: &mut PgConnection) {
    let mut out = conn.copy_out_raw("").await.unwrap();
    while let Some(chunk) = out.next().await {
        let x: bytes::Bytes = chunk.unwrap();
    }
}