rust/crates/ra_hir_def
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 Nice string formatting 2020-03-28 12:27:54 +01:00