How to define a Queryable and Insertable struct with AUTO_INCREMENT column using Diesel ORM in Rust?
I am struggling with a seemingly basic task with Diesel ORM. I am trying to define a struct that I can both insert (without specifying id manually) and query, for a simple table.