The problem:
I want to transform AttrType<T1>
to AttrType<T2>
and i do not necessarily care about which variant it is at that point.
How can this be done in a non verbose way without having to match?
If it can't, is it worth adding a feature like that?
enum AttrType<T> {
Meta(T),
Status(T),
Content(T),
}