You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm finding myself needing to wrap a type "quickly", but then I don't want to have any
specific restrictions on the inner-type, other than being wrapped.
PartialOrd and PartialEq where Rhs = InnerType is a small ergonomic advantage if at all possible?
I see that #51 was shortly dismissed, but maybe this is a good time to maybe revisit this.
I have also been thinking if this is possible to add through a trait, but I think this is less explicit then
what can be done using a derive-macro. Also the object-safety issue comes up if I want to do that..