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
At the very least the trait should lose its lifetime and the lifetime should move to the associated type. This should greatly reduce all of our for<'a>s
It's unclear to me if something like Self<'a> is possible, we'd be able to lose the associated type with that.
<T as Yokeable<'a>>::Output
is just a way of sayingSelf<'a>
in a GAT-less world.Now that GATs are rather stable and well inside our MSRV, we should use them.
The text was updated successfully, but these errors were encountered: