7 ms·
Well, the first two are really just the same thing :P
by kimundi 12y ago
Well, the first two are really just the same thing :P
- Gankro 12y agoEh, with the new oprhan/impl rules associated and uh... not... associated(...?) types have developed quite a schism.
- dbaupp 12y agoWell, the first two confusingly change two variables at once: the things that are the same (which I presume is what kimundi meant) are fn foo<S, T: MyTrait<S>>(elem: T) { ... } fn foo<S, T>(elem: T) where T: MyTrait<S> { ... } and fn foo<S, T: MyTrait<Thing = S>>(elem: T) { ... } fn foo<S, T>(elem: T) where T: MyTrait<Thing = S> { ... }