我有一个 Postgres 表,其中包含三个字段
,id
即一个字段和一个 uuid字段。bigserial
meta
jsonb
UUID
pub struct MetaLogs {
pub id:i64,
pub uuid: <what type should I give here >
pub meta: < What type should I give here >
}
我将sqlx
ORM 用于Rust
. 虽然我明白我必须添加
features = [ "runtime-tokio", "macros" ,"postgres","json","uuid"]
在那之后我无法弄清楚如何进行