Diesel 是否支持 Postgres `point` 类型?
Does Diesel support the Postgres `point` type?
我想在柴油类型列表中使用 point Postgres type. I don't see this type listed here。
编写包含 point
列的模型的正确方法是什么?
基于this Diesel GitHub issue and the types available in diesel::pg::types
and diesel::types
,似乎不支持这些类型。
要编写包含 point
列的模型,您需要使 point
成为 Diesel 可以理解的值。首先为 Point
类型实现 FromSql
特征,然后实现所需的所有东西。对于这样的扩展,请查看 this PR.
我想在柴油类型列表中使用 point Postgres type. I don't see this type listed here。
编写包含 point
列的模型的正确方法是什么?
基于this Diesel GitHub issue and the types available in diesel::pg::types
and diesel::types
,似乎不支持这些类型。
要编写包含 point
列的模型,您需要使 point
成为 Diesel 可以理解的值。首先为 Point
类型实现 FromSql
特征,然后实现所需的所有东西。对于这样的扩展,请查看 this PR.