我们如何在 sqlx rust 中定义 jsonb 和 UUID 字段?
How do we define a jsonb and UUID field in sqlx rust?
我有一个具有三个字段的 Postgres table
id
是一个 bigserial
,meta
一个 jsonb
字段和一个 uuid UUID
字段。
pub struct MetaLogs {
pub id:i64,
pub uuid: <what type should I give here >
pub meta: < What type should I give here >
}
我正在为 Rust
使用 sqlx
ORM。
虽然我明白我必须添加
features = [ "runtime-tokio", "macros" ,"postgres","json","uuid"]
在那之后我无法弄清楚如何继续
我有一个具有三个字段的 Postgres table
id
是一个 bigserial
,meta
一个 jsonb
字段和一个 uuid UUID
字段。
pub struct MetaLogs {
pub id:i64,
pub uuid: <what type should I give here >
pub meta: < What type should I give here >
}
我正在为 Rust
使用 sqlx
ORM。
虽然我明白我必须添加
features = [ "runtime-tokio", "macros" ,"postgres","json","uuid"]
在那之后我无法弄清楚如何继续