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