232 B
232 B
Making lifetimes a parameter of a trait instead of that of the GAT
Current:
pub trait WeakFunctorAny {
type F<'a, A: 'a>: 'a
where
Self: 'a;
}
pub trait WeakFunctor<'a>: 'a {
type F<A: 'a>: 'a;
}