You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0277]: the trait bound `postgis_diesel::types::MultiPoint<postgis_diesel::types::Point>: AppearsOnTable<schema::entities::table>` is not satisfied
--> src/models/entities.rs:31:10
|
31 | #[derive(AsChangeset, Debug)]
| ^^^^^^^^^^^ the trait `AppearsOnTable<schema::entities::table>` is not implemented for `postgis_diesel::types::MultiPoint<postgis_diesel::types::Point>`
|
Is there a way for this library to support Changesets ?
The text was updated successfully, but these errors were encountered:
Hi @ElysaSrc, can you provide complete minimal code example to reproduce that compilation error? I've tried to add AsChangeset derive into test structures like so, in integration_test.rs
Maybe it's not an issue, but I cannot figure out how to use this library with Diesel Changesets ?
I have the following Changeset:
It outputs the following error:
Is there a way for this library to support Changesets ?
The text was updated successfully, but these errors were encountered: