rust-analyzer/crates/ra_hir_ty
Florian Diebold c8b2ec8c20 Add support for bounds on associated types in trait definitions
E.g.
```
trait Trait {
    type Item: SomeOtherTrait;
}
```
Note that these don't simply desugar to where clauses; as I understand it, where
clauses have to be proved by the *user* of the trait, but these bounds are proved
by the *implementor*. (Also, where clauses on associated types are unstable.)
2020-04-13 15:57:28 +02:00
..
src Add support for bounds on associated types in trait definitions 2020-04-13 15:57:28 +02:00
Cargo.toml Implement Chalk's debug methods using TLS 2020-04-10 15:04:06 +02:00