File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -325,14 +325,17 @@ If any of the other options appears several times the first occurrence of the re
325
325
Any other occurrence generates an lint warning .
326
326
For any other non - existing option a lint - warning is generated .
327
327
328
- All three options accept a string as an argument .
329
- The text in the string may contain the following format parameters which provide substitutions in the generated message :
328
+ All three options accept a string as an argument , interpreted using the same formatting as a [` std :: fmt `] string .
329
+ Format parameters with the given named parameter will be replaced with the following text :
330
330
331
331
* `{Self }` — The name of the type implementing the trait .
332
332
* `{` * GenericParameterName * `}` — The name of the generic argument 's type for the given generic parameter .
333
333
334
334
Any other format parameter will generate a warning , but will otherwise be included in the string as - is .
335
335
336
+ Invalid format strings may generate a warning , but are otherwise allowed , but may not display as intended .
337
+ Format specifiers may generate a warning , but are otherwise ignored .
338
+
336
339
In this example :
337
340
338
341
```rust ,compile_fail ,E0277
@@ -367,6 +370,7 @@ error[E0277]: My Message for `ImportantTrait<i32>` implemented for `String`
367
370
= note: Note 2
368
371
```
369
372
373
+ [ `std::fmt` ] : ../../std/fmt/index.html
370
374
[ Clippy ] : https://github.com/rust-lang/rust-clippy
371
375
[ _MetaListNameValueStr_ ] : ../attributes.md#meta-item-attribute-syntax
372
376
[ _MetaListPaths_ ] : ../attributes.md#meta-item-attribute-syntax
You can’t perform that action at this time.
0 commit comments