mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 12:54:58 +00:00
Slim down AssociatedTypeBinding by one usize
This commit is contained in:
parent
41db8c2b59
commit
4c2aef650a
6 changed files with 8 additions and 8 deletions
|
@ -77,7 +77,7 @@ pub struct AssociatedTypeBinding {
|
|||
/// Bounds for the associated type, like in `Iterator<Item:
|
||||
/// SomeOtherTrait>`. (This is the unstable `associated_type_bounds`
|
||||
/// feature.)
|
||||
pub bounds: Vec<Interned<TypeBound>>,
|
||||
pub bounds: Box<[Interned<TypeBound>]>,
|
||||
}
|
||||
|
||||
/// A single generic argument.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue