#postgresql #tokio #mapper #mapping #row #proc-macro #structs

tokio-pg-mapper

Proc-macro library used to map a tokio-postgres row to a Rust type (struct)

9 releases

0.2.0 Jan 4, 2021
0.1.9 Dec 31, 2020
0.1.8 May 26, 2020
0.1.7 Mar 26, 2020
0.1.4 Jan 11, 2020

#1032 in Database interfaces

Download history 1257/week @ 2023-12-11 1015/week @ 2023-12-18 416/week @ 2023-12-25 892/week @ 2024-01-01 1096/week @ 2024-01-08 1210/week @ 2024-01-15 1315/week @ 2024-01-22 1305/week @ 2024-01-29 1041/week @ 2024-02-05 1091/week @ 2024-02-12 1250/week @ 2024-02-19 1112/week @ 2024-02-26 1341/week @ 2024-03-04 1081/week @ 2024-03-11 1272/week @ 2024-03-18 1050/week @ 2024-03-25

4,830 downloads per month
Used in 3 crates

ISC license

11KB
57 lines

tokio-pg-mapper

tokio_postgres-mapper is a proc-macro designed to make mapping from postgresql tables to structs simple.

Why?

It can be frustrating to write a lot of boilerplate and, ultimately, duplicated code for mapping from postgres Rows into structs.

For example, this might be what someone would normally write:

extern crate postgres;

use postgres::rows::Row;

pub struct User {
    pub id: i64,
    pub name: String,
    pub email: Option<String>,
}

impl From<Row> for User {
    fn from(row: Row) -> Self {
        Self {
            id: row.get("id"),
            name: row.get("name"),
            email: row.get("email"),
        }
    }
}

// code to execute a query here and get back a row
let user = User::from(row); // this can panic

This becomes worse when manually implementating using the non-panicking get_opt method variant.

Using this crate, the boilerplate is removed, and panicking and non-panicking implementations are derived:

extern crate tokio_pg_mapper_derive;
extern crate tokio_pg_mapper;

use tokio_pg_mapper::FromTokioPostgresRow;
use tokio_pg_mapper_derive::PostgresMapper;

#[derive(PostgresMapper)]
pub struct User {
    pub id: i64,
    pub name: String,
    pub email: Option<String>,
}

// Code to execute a query here and get back a row might now look like:
let stmt = "SELECT * FROM user WHERE username = $1 AND password = $2";

let result = client.query_one(stmt, &[&5, "asdf"]).await?;
let user = User::from_row(result).unwrap(); // or from_row_ref(&result)


The two crates

This repository contains two crates: postgres-mapper which contains an Error enum and traits for converting from a tokio-postgres Row without panicking, and postgres-mapper-derive which contains the proc-macro.

Installation

Install tokio-pg-mapper-derive and tokio-pg-mapper from crates.io

License

ISC.

Dependencies

~8–19MB
~317K SLoC