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