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