3个不稳定版本
0.2.1 | 2022年3月10日 |
---|---|
0.2.0 | 2022年2月6日 |
0.1.0 | 2021年12月27日 |
#64 在 #row
90 每月下载量
用于 inline-sql
6KB
89 代码行
#[derive(TryFromRow)]
示例
/// This will try to get each column value by name.
#[derive(pg_mapper::TryFromRow)]
struct User {
email: String,
password_digest: String,
}
/// This will try to get each column value by index.
#[derive(pg_mapper::TryFromRow)]
struct Point(i32, i32, i32);
生成
impl TryFrom<tokio_postgres::Row> for User {
type Error = tokio_postgres::Error;
fn try_from(row: tokio_postgres::Row) -> Result<Self, Self::Error> {
Ok(Self {
email: row.try_get("email")?,
password_digest: row.try_get("password_digest")?,
})
}
}
impl TryFrom<tokio_postgres::Row> for Point {
type Error = tokio_postgres::Error;
fn try_from(row: tokio_postgres::Row) -> Result<Self, Self::Error> {
Ok(Self(row.try_get(0)?, row.try_get(1)?, row.try_get(2)?))
}
}
依赖
~1.5MB
~34K SLoC