@@ -180,11 +180,11 @@ is considered local.
180
180
181
181
## Generic Implementations
182
182
183
- An implementation can take type and lifetime parameters, which can be used in
184
- the rest of the implementation. Type parameters declared for an implementation
185
- must be used at least once in either the trait or the implementing type of an
186
- implementation. Implementation parameters are written directly after the ` impl `
187
- keyword .
183
+ An implementation can take [ generic parameters] which are written directly
184
+ after the ` impl ` keyword. The parameters can be used in the rest of the
185
+ implementation. Type and const parameters must be used at least once in either
186
+ the trait or the implementing type of an implementation. Lifetime parameters
187
+ do not need to be used unless they appear in an [ associated type ] .
188
188
189
189
``` rust
190
190
# trait Seq <T > { fn dummy (& self , _ : T ) { } }
@@ -219,6 +219,7 @@ attributes].
219
219
[ trait ] : traits.md
220
220
[ associated functions ] : associated-items.md#associated-functions-and-methods
221
221
[ associated constants ] : associated-items.md#associated-constants
222
+ [ associated type ] : associated-items.md#associated-types
222
223
[ attributes ] : ../attributes.md
223
224
[ `cfg` ] : ../conditional-compilation.md
224
225
[ `deprecated` ] : ../attributes/diagnostics.md#the-deprecated-attribute
@@ -230,3 +231,4 @@ attributes].
230
231
[ local type ] : ../glossary.md#local-type
231
232
[ fundamental types ] : ../glossary.md#fundamental-type-constructors
232
233
[ uncovered type ] : ../glossary.md#uncovered-type
234
+ [ generic parameters ] : generics.md
0 commit comments