pub trait GoodOrmningCustomI32<T> { // Required methods fn to_sql(value: &T) -> i32; fn from_sql(value: i32) -> Result<T, String>; }