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
Auto merge of #735 - eggyal:owned-interner, r=jackh726
Use owned copies of Interner rather than refs
The [`chalk_ir::interner::Interner`](https://rust-lang.github.io/chalk/chalk_ir/interner/trait.Interner.html) trait has `Copy` as a supertrait. We can therefore use owned copies of `I: Interner` throughout, rather than `&I` references. This simplifies the API, removing lifetime parameters from numerous items which, in turn, should simplify user code.
0 commit comments