1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
|
# **Template syntax (and expansion options) reference**
<!-- @dd-navbar reference .. -->
<!-- this line automatically maintained by update-navbars --><nav style="text-align: right; margin-bottom: 12px;">[ <em>docs: <a href="../index.html">crate top-level</a> | <a href="../index.html#overall-toc">overall toc, macros</a> | <strong>template etc. reference</strong> | <a href="https://diziet.pages.torproject.net/rust-derive-deftly/latest/guide/">guide/tutorial</a></em> ]</nav>
**Table of contents** <br>
(see also the [Index](#t:index))
<!--##toc##-->
* [Template syntax overview](#template-syntax-overview)
* [Named and positional template arguments to expansions and conditions](#named-and-positional-template-arguments-to-expansions-and-conditions)
* [Repetition and nesting](#repetition-and-nesting)
* [Expansions](#expansions)
* [`$fname`, `$vname`, `$tname` -- names](#fname-vname-tname--names)
* [`$fvis`, `$tvis`, `$fdefvis` -- visibility](#fvis-tvis-fdefvis--visibility)
* [`$vpat`, `$fpatname` -- pattern matching and value deconstruction](#vpat-fpatname--pattern-matching-and-value-deconstruction)
* [`$ftype`, `$vtype`, `$ttype`, `$tdeftype` -- types](#ftype-vtype-ttype-tdeftype--types)
* [`$tgens`, `$tgnames`, `$twheres`, `$tdefgens` -- generics](#tgens-tgnames-twheres-tdefgens--generics)
* [`${tmeta(...)}` `${vmeta(...)}` `${fmeta(...)}` -- `#[deftly]` attributes](#tmeta-vmeta-fmeta--deftly-attributes)
* [`${fattrs ...}` `${vattrs ...}` `${tattrs ...}` -- other attributes](#fattrs--vattrs--tattrs---other-attributes)
* [`$findex` `$vindex` -- field/variant numerical index (**beta**)](#findex-vindex--fieldvariant-numerical-index-beta)
* [`${paste ...}`, `$<...>`, `${paste_spanned}` -- identifier pasting](#paste---paste_spanned--identifier-pasting)
* [`${concat ...}` - string literal concatenation (**beta**)](#concat----string-literal-concatenation-beta)
* [`${CASE_CHANGE ...}` -- case changing](#case_change---case-changing)
* [`${when CONDITION}` -- filtering out repetitions by a predicate](#when-condition--filtering-out-repetitions-by-a-predicate)
* [`${if COND1 { ... } else if COND2 { ... } else { ... }}` -- conditional](#if-cond1----else-if-cond2----else-----conditional)
* [`${select1 COND1 { ... } else if COND2 { ... } else { ... }}` -- expect precisely one predicate](#select1-cond1----else-if-cond2----else-----expect-precisely-one-predicate)
* [`${for fields { ... }}`, `${for variants { ... }}`, `$( )` -- repetition](#for-fields----for-variants-------repetition)
* [`$crate` -- root of template crate](#crate--root-of-template-crate)
* [`$tdefkwd` -- keyword introducing the new data structure](#tdefkwd--keyword-introducing-the-new-data-structure)
* [`$tdefvariants`, `$vdefbody`, `$fdefine` -- tools for defining types](#tdefvariants-vdefbody-fdefine--tools-for-defining-types)
* [`${ignore ..}` -- Expand but then discard](#ignore---expand-but-then-discard)
* [`${dbg ..}`, `$dbg_all_keywords` -- Debugging output](#dbg--dbg_all_keywords--debugging-output)
* [`${define ...}`, `${defcond ...}` -- user-defined expansions and conditions](#define--defcond---user-defined-expansions-and-conditions)
* [`${error ...}` -- explicitly throw a compile error](#error---explicitly-throw-a-compile-error)
* [Conditions](#conditions)
* [`fvis`, `tvis`, `fdefvis` -- test for public visibility](#fvis-tvis-fdefvis--test-for-public-visibility)
* [`fmeta(NAME)`, `vmeta(NAME)`, `tmeta(NAME)` -- `#[deftly]` attributes](#fmetaname-vmetaname-tmetaname--deftly-attributes)
* [`is_struct`, `is_enum`, `is_union`](#is_struct-is_enum-is_union)
* [`v_is_unit`, `v_is_tuple`, `v_is_named`](#v_is_unit-v_is_tuple-v_is_named)
* [`tgens`](#tgens)
* [`is_empty(..)`, `approx_equal(ARG1, ARG2)` -- equality comparison (token comparison)](#is_empty-approx_equalarg1-arg2--equality-comparison-token-comparison)
* [`false`, `true`, `not(CONDITION)`, `any(COND1,COND2,...)`, `all(COND1,COND2,...)` -- boolean logic](#false-true-notcondition-anycond1cond2-allcond1cond2--boolean-logic)
* [`dbg(...)` -- Debug dump of condition value](#dbg--debug-dump-of-condition-value)
* [Case changing](#case-changing)
* [Expansion options](#expansion-options)
* [`expect items`, `expect expr` -- syntax check the expansion](#expect-items-expect-expr--syntax-check-the-expansion)
* [`for struct`, `for enum`, `for union` -- Insist on a particular driver kind](#for-struct-for-enum-for-union--insist-on-a-particular-driver-kind)
* [`dbg` -- Print the expansion to stderr, for debugging](#dbg--print-the-expansion-to-stderr-for-debugging)
* [`beta_deftly` -- Enable unstable template features](#beta_deftly--enable-unstable-template-features)
* [Expansion options example](#expansion-options-example)
* [Precedence considerations](#precedence-considerations)
* [`None`-delimited groups](#none-delimited-groups)
* [Structs used in examples](#structs-used-in-examples)
* [Keyword index](#keyword-index)
* [Expansions index](#expansions-index)
* [Conditions index](#conditions-index)
**Reference documentation for the actual proc macros** is in
the [crate-level docs for derive-deftly](../index.html#macros).
<!-- Link conventions in this document.
We use x:foo for the expansion "foo".
We use c:foo for the condition "foo".
We use t:foo for the topic "foo".
We use eo:foo for a top-level expansion option "foo".
-->
[**beta**]: ../doc_changelog/index.html#t:beta
[positional argument]: #t:arguments
<div id="t:syntax">
## Template syntax overview
</div>
Within the macro template,
expansions (and control structures) are introduced with `$`.
They generally refer to properties of the data structure that
we're deriving from.
We call that data structure the **driver**.
In general the syntax is:
* `$KEYWORD`: Invoke the expansion of the keyword `KEYWORD`.
* `${KEYWORD ARGS...}`: Invoke with parameters.
* `$( .... )`: Repetition (abbreviated, automatic, form).
(Note: there is no `+` or `*` after the `)`)
* `$< .... >`: Identifier pasting (shorthand for
[`${paste ...}`](#x:paste)).
In all cases, `$KEYWORD` is equivalent to `${KEYWORD}`.
<span id="dollar-dollar">You can pass a `$` through
by writing `$$`.</span>
<span id="keyword-initial-letters">Many
of the expansion keywords start with `f`, `v`, or `s` to indicate
the depth of the thing being expanded:</span>
* `f...`: Expand something belonging to a particular Field.
* `v...`: Expand something belonging to a particular Variant.
* `t...`: Expand something applying to the whole Top-level type.
In the keyword descriptions below,
`X` is used to stand in for one of `f`, `v` or `t`.
Defining a new type based on the driver
requires more complex and subtle syntax,
generated by special-purpose expansions `$Xdef...`.
(Here, within this documentation,
we often write in `CAPITALS` to indicate meta-meta-syntactic elements,
since all of the punctuation is already taken.)
Inner attributes (`#![...]` and `//!...`)
are not allowed in templates.
<div id="t:arguments">
### Named and positional template arguments to expansions and conditions
</div>
Some expansions and conditions take
(possibly optional)
named arguments,
or multiple positional arguments,
whose values are templates:
* `${KEYWORD NAME=ARG NAME=ARG ...}`
* `${KEYWORD ARG1 ARG2 ...}`
* `CONDITION(NAME=ARG, NAME=ARG, ...)`
* `CONDITION(ARG1, ARG2, ...)`
The acceptable contents vary,
but the syntax is always the same.
Each `ARG` must be one of:
* `IDENTIFIER`
* `LITERAL` (eg, `NUMBER` or `"STRING"`)
* `$EXPANSION` (including `${KEYWORD...}`, `$<...>`, etc.)
* `{ STUFF }`, where `STUFF` is expanded.
(The `{ }` are just for delimiting the value, and are discarded).
<div id="t:repetition">
## Repetition and nesting
</div>
The driving data structure can contain multiple variants,
which can in turn contain multiple fields;
there are also attributes.
Correspondingly,
sections of the template, indicated by `${for ...}` and `$(...)`,
are expanded multiple times.
With `${for ...}`, what is iterated over is specified explicitly.
When `$( ... )` is used, what is iterated over is automatically
inferred from the content:
most expansions and conditions imply a "level":
what possibly-repeated part of the driver they correspond to.
All the expansions directly within `$(...)`
must have the same repetition level.
With both `${for }` and `$(...)`,
if the repetition level is "deeper" than the level
of the surrounding template,
the surrounding levels are also repeated over,
effectively "flattening".
For example, expanding `$( $fname )` at the very toplevel,
will iterate over all of the field names;
if the driver is an enum;
it will iterate over all of the fields in each of the variants
in turn.
structs and unions do not have variants, but
derive-deftly treats them as having a single (unnamed) variant.
#### Examples
<!--##examples-for `Enum`##-->
<!--##examples-ignore##-->
For [example enum `Enum`](#structs-used-in-examples):
* `$($vname,)`: `UnitVariant, TupleVariant, NamedVariant,`
* `$($fname)`: `0 field field_b field_e field_o`
* `${for fields { hello }}`: `hello hello hello hello`
## Expansions
Each expansion keyword is described in this section.
The examples each show the expansions for (elements of)
[the same example `Unit`, `Tuple`, `Struct` and `Enum`](#t:example-structs),
shown below.
<!-- ## maint/check-keywords-documented expansions ## -->
<div id="x:fname">
<div id="x:tname">
<div id="x:vname">
### `$fname`, `$vname`, `$tname` -- names
</div>
</div>
</div>
The name of the field, variant, or toplevel type.
This is an the identifier (without any path or generics).
For tuple fields, `$fname` is the field number.
`$fname` is not suitable for direct use as a local variable name.
It might clash with other local variables;
and, unlike most other expansions,
`$fname` has the hygiene span of the driver field name.
Instead, use `$vpat`, `$fpatname`,
or `${paste ... $fname ...}` (`$<... $fname ...>`).
#### Examples
* `$fname`: `0`, `field`, `field_b`
* `$vname`: `UnitVariant`
* `$tname`: `Tuple`, `Struct`, `Enum`
<div id="x:fdefvis">
<div id="x:fvis">
<div id="x:tvis">
<div id="t:visibility">
### `$fvis`, `$tvis`, `$fdefvis` -- visibility
</div>
</div>
</div>
</div>
The visibility of the field, or toplevel type.
Expands to `pub`, `pub(crate)`, etc.
Expands to nothing for private types or fields.
This looks only at the syntax in the driver definition;
an item which is `pub` might still not be reachable,
for example if it is in a private inner module.
<div id="t:enum-visibility">
#### Enums and visibility
</div>
In Rust,
enum variants and fields don't have separate visibility;
they inherit visibility from the enum itself.
So there is no `$vvis`.
For enum fields, `$fvis` expands to the same as `$tvis`.
Use `$fvis` for the effective visibility of a field,
eg when defining a derived method.
`$fdefvis` is precisely what was written in the driver field definition,
so always expands to nothing for enum fields -
even though those might be public.
Use `$fdefvis` when defining a new enum.
#### Examples
* `$tvis` for `Unit`: `pub`
* `$tvis` for `Enum`: `pub`
* `$tvis` for others: nothing
* `$fvis` for `field` in `Struct`: `pub`
* `$fvis` for `field_b` in `Struct`: `pub(crate)`
* `$fvis` for fields in `Enum`: `pub`
* `$fvis` for others: nothing
* `$fdefvis` for `field` in `Struct`: `pub`
* `$fdefvis` for `field_b` in `Struct`: `pub(crate)`
* `$fdefvis` for fields in `Enum`: nothing
* `$fdefvis` for others: nothing
<div id="x:fpatname">
<div id="x:vpat">
### `$vpat`, `$fpatname` -- pattern matching and value deconstruction
</div>
</div>
`$vpat` expands to a pattern
suitable for matching a value of the top-level type.
It expands to `TYPE { FIELD: f_FNAME, ... }`,
where `TYPE` names the top-level type or enum variant.
(`TYPE` doesn't have generics,
since those are not allowed in patterns.)
Each field is bound to a local variant `f_FNAME`,
where `FNAME` is the actual field name (or tuple field number).
`$fpatname` expands to `f_FNAME` for the current field.
#### `$vpat` named arguments
* `self`: top level type path. Default is `$tname`.
Must expand to a syntactically valid type path,
without generics.
* `vname`: variant name. Default is `$vname`.
Not expanded for structs.
* `fprefix`: prefix to use for the local bindings.
Useful if you need to bind multiple values at once.
(Then, reference the bindings with `$<FPREFIX $fname>`;
`$fpatname` doesn't take a `fprefix` argument.)
Default is `f_`.
These use derive-deftly's usual
[syntax for named arguments](#named-and-positional-template-arguments-to-expansions-and-conditions).
#### Examples
* `$vpat` for structs: `Unit { }`, `Tuple { 0: f_0, }`
* `$vpat` for enum variant: `Enum::NamedVariant { field: f_field, ... }`
* `$fpatname`: `f_0`, `f_field`
* `${vpat self=$<$tname Reference> vname=$<Ref $vname> fprefix=other_}`: `EnumReference::RefNamedVariant { field: other_field, ... }`
<div id="x:ftype">
<div id="x:tdeftype">
<div id="x:ttype">
<div id="x:vtype">
### `$ftype`, `$vtype`, `$ttype`, `$tdeftype` -- types
</div>
</div>
</div>
</div>
The type of the field, variant, or the toplevel type.
`$ftype`, `$vtype` and `$ttype`
are suitable for referencing the type in any context
(for example, when defining the type of a binding,
or as a type parameter for a generic type).
These contains all necessary generics
(as names, without any bounds etc., but within `::<...>`).
`$vtype` includes both the top-level enum type, and the variant.
To construct a value, prefer `$vtype` rather than `$ttype`,
since `$vtype` works with enums too.
`$tdeftype` is
the driver type in a form suitable for defining
a new type with a derived name (eg, using pasting).
Contains all the necessary generics, with bounds,
within `<...>` but without an introducing `::`.
The toplevel type expansions, `$ttype` and `$tdeftype`,
don't contain a path prefix, even when
a driver type argument to
`derive_deftly_adhoc!`
has a path prefix.
`$vtype` (and `$ttype` and `$tdeftype`) are not suitable for matching.
Use `$vpat` for that.
#### `$vtype` named arguments
* `self`: top level type. Default is `$ttype`.
Must expand to a syntactically valid type.
* `vname`: variant name. Default is `$vname`.
Not expanded for structs.
These can be specified using pasting `$<...>`
to name related (derived) types and variants.
They use derive-deftly's usual
[syntax for named arguments](#named-and-positional-template-arguments-to-expansions-and-conditions).
#### Examples
* `$ftype`: `« std::iter::Once::<T> »`, `« Option::<i32> »`
* `$vtype` for struct: `Tuple::<'a, 'l, T, C>`
* `$vtype` for enum variant: `Enum::TupleVariant::<'a, 'l, T, C>`
* `$ttype`: `Enum::<'a, 'l, T, C>`
* `$tdeftype`: `Enum<'a, 'l: 'a, T: Display = usize, const C: usize = 1>`
* `${vtype self=$<$ttype Reference> vname=$<Ref $vname>}`
for enum variant:
`EnumReference::RefTupleVariant::<'a, 'l, T, C>`
<div id="x:tdefgens">
<div id="x:tgens">
<div id="x:tgnames">
<div id="x:twheres">
### `$tgens`, `$tgnames`, `$twheres`, `$tdefgens` -- generics
</div>
</div>
</div>
</div>
Generic parameters and bounds, from the toplevel type,
in various forms.
* **`$tgens`**:
The generic arguments, with bounds
(and the types of const generics)
but without defaults.
Suitable for use when starting an `impl`.
* **`$tgnames`**:
The generic argument names, without bounds.
Suitable for use in a field type or in the body of an impl.
* **`$twheres`**:
The where clauses, as written in the toplevel type definition.
* **`$tdefgens`**:
The generic arguments, with bounds, *with* defaults,
as written in the toplevel type definition,
suitable for defining a derived type.
If not empty, each of these will always have a trailing comma.
Bounds appear in `$tgens`/`$tdefgens` or `$twheres`,
according to where they appear in the toplevel type,
so for full support of generic types the template must expand both.
#### Examples
* `$tgens`: `'a, 'l: 'a, T: Display, const C: usize,`
* `$tgnames`: `'a, 'l, T, C,`
* `$twheres`: `T: 'l, T: TryInto<u8>,`
* `$tdefgens`: `'a, 'l: 'a, T: Display = usize, const C: usize = 1,`
<div id="x:fmeta">
<div id="x:tmeta">
<div id="x:vmeta">
### `${tmeta(...)}` `${vmeta(...)}` `${fmeta(...)}` -- `#[deftly]` attributes
</div>
</div>
</div>
Accesses macro parameters passed via `#[deftly(...)]` attributes.
* **`${Xmeta(NAME)}`**:
Looks for `#[deftly(NAME="VALUE")]`, and expands to `VALUE`.
`"VALUE"` must be be a string literal,
which is parsed as a piece of Rust code, and then expanded.
Normally,
`aa ..` must be given, to specify how `VALUE` should be parsed;
within `$(paste ..}`, `as str` is the default.
* **`${Xmeta(SUB(NAME))}`**:
Looks for `#[deftly(SUB(NAME="VALUE"))]`.
The `#[deftly()]` is parsed as
a set of nested, comma-separated, lists.
So this would find `NAME`
in `#[deftly(SUB1,SUB(N1,NAME="VALUE",N2),SUB2)]`.
The label can be arbitrarily deep, e.g.: `${Xmeta(L1(L2(L3(ATTR))))}`.
* **`${Xmeta(...) as SYNTYPE}`**:
Treats the value as a `SYNTYPE`.
`SYNTYPE`s available are:
* **`str`**: Expands to a string literal
with the same contents as
the string provided for `VALUE`.
Ie, the attribute's string value is *not* parsed.
This is the default within pasting and case changing,
if no `as` was specified.
Within pasting and case changing,
the provided string becomes part of the pasted identifier
(and so must consist of legal identifier characters).
* **`ty`**:
`VALUE` is parsed as a type,
possibly with generics etc. (`syn::Type`).
When expanded, generic arguments have any missing `::` inserted,
so that the expansion is suitable for use in any context,
(such as invoking an inherent or trait method).
* **`path`**:
`VALUE` is parsed as a path,
possibly with generics etc. (`syn::Path`).
Like `as ty` but non-path types are forbidden.
Rust uses the same path syntax for types and modules,
so this is suitable for accepting a module path, too.
* **`expr`**:
`VALUE` is parsed as an expression.
When expanded, it is surrounded with `( )`
to ensure correct precedence.
* **`ident`**:
`VALUE` is parsed as an identifier (or keyword).
(Within pasting, prefer `as str`, the default;
`as ident` rejects initial digits, and the empty string.)
* **`items`**:
`VALUE` is parsed as zero or more Rust Items (`syn::Item`).
Note that the driver must pass the items' source code in `"..."`.
* **`token_stream`**:
`VALUE` is parsed as an arbtitrary sequence of tokens
(`TokenStream`).
When using this option, be careful about operator precedence:
see [Precedence considerations](#precedence-considerations).
* **`${Xmeta(...) .. , default DEFAULT}`** ([**beta**]):
If there is no `VALUE` expands
the [positional argument] `DEFAULT` instead.
NB: in this case the expansions of `DEFAULT` is used as is:
*not* affected by any `as ..` clause;
*not* surrounded with additional `( )` (for `as expr`),
nor any additional [`None`-delimited group](#t:none-delimiters).
When expanding `${Xmeta}`,
it is an error if the value was not specified in the driver,
and also an error if multiple values were specified.
For a struct, both `$tmeta` and `$vmeta`
look in the top-level attributes.
This allows a template to have uniform handling of attributes
which should affect how a set of fields should be processed.
Within `${Xmeta ..}`,
options (`as` and `default`)
are each introduced with a keyword,
and separated by commas.
#### Attribute namespacing
`derive-deftly` does not impose any namespacing within `#[deftly]`:
all templates see the same `deftly` meta attributes.
To avoid clashes,
macros intended for general use should look for attributes
within a namespace for that template.
The usual convention is to accept attributes
scoped within the snake-cased name of the template,
as demonstrated
[in the introduction](https://diziet.pages.torproject.net/rust-derive-deftly/latest/guide/constructor-attrs.html#meta-attr-scope).
#### Unrecognised/unused `#[deftly(...)]` attributes
Every `#[deftly(...)]` attribute on the input data structure
must correspond to a `${Xmeta...}` expansion
(or `fmeta(...)` boolean test, as applicable)
in the template(s) applied to that driver.
The `Xmeta` reference must have been actually expanded (or tested),
so parts of the template that weren't expanded don't count.
These checks are disabled by `#[derive_deftly_adhoc]`.
#### Examples
* `${tmeta(simple) as ty}`: `« String »`
* `${tmeta(missing) as ty, default String}`: `String`
* `${tmeta(simple) as path}`: `« String »`
* `${tmeta(simple) as str}`: `"String"`
* `${tmeta(simple) as token_stream}`: `String`
* `${tmeta(gentype) as ty}`: `« Vec::<i32> »`
* `${tmeta(gentype) as str}`: `"Vec<i32>"`
* `${tmeta(gentype) as token_stream}`: `Vec<i32>`
* `${vmeta(value) as ident}`: `unit_toplevel`, `enum_variant`
* `${fmeta(nested(inner)) as expr}` for `field` in `Struct`: `(42)`
* `${vmeta(items) as items}` for `TupleVariant`: `type T = i32; const K: T = 7;`
* `${fmeta(nested)}`: rejected, ``expected a leaf node, found a list with sub-attributes``
#### Examples involving pasting
* `$<Small ${tmeta(simple)}>`: `SmallString`
* `$<Small ${tmeta(simple) as str}>`: `SmallString`
* `$<Small ${tmeta(simple) as ty}>`: `« SmallString »`
* `$<Small ${tmeta(gentype) as ty}>`: `« SmallVec::<i32> »`
* `$<$ttype ${tmeta(simple) as str}>`: `UnitString::<C>`
* `$<$ttype ${tmeta(simple) as ty}>`: error, ``multiple nontrivial entries``
<div id="x:fattrs">
<div id="x:tattrs">
<div id="x:vattrs">
### `${fattrs ...}` `${vattrs ...}` `${tattrs ...}` -- other attributes
</div>
</div>
</div>
Expands to attributes, including non-`#[deftly()]` ones.
The attributes can be filtered:
* **`$Xattrs`**: All the attributes
except `#[deftly]` and `#[derive_deftly]`
* **`${Xattrs A1, A2, ...}`**, or
**`${Xattrs = A, A2, ...}`**:
Attributes `#[A1...]` and `#[A2...]` only.
* **`${Xattrs ! A1, A2, ...}`**:
All attributes *except* those.
With `${Xattrs}`, unlike `${Xmeta}`,
* The expansion is the whole of each attribute, including the `#[...]`;
* All attributes are included.
* But `#[deftly(...)]` `#[derive_deftly(...)]`
and `#[derive_deftly_adhoc(...)]`
are *excluded* by default,
because typically they would be rejected by the compiler:
the expanded output is (perhaps) no longer within `#[derive(Deftly)]`,
so those attributes might be unrecognised there.
* The attributes can be filtered by toplevel attribute name,
but not deeply manipulated.
* `$vattrs` does not, for a non-enum, include the top-level attributes .
Note that derive macros,
only see attributes
that come *after* the `#[derive(...)]` that invoked them.
So derive-deftly templates only see attributes
that come *after* the `#[derive(..., Deftly, ...)]`.
#### Examples
##### For `Unit`
<!--##examples-for `Unit`##-->
* `${tattrs}`: ``#[derive(Clone)]``
* `${tattrs ! deftly}`: ``#[derive(Clone)]``
* `${tattrs missing}`: nothing
* `${tattrs derive}`: ``#[derive(Clone)]``
* `${vattrs deftly}`: nothing
##### For `Tuple`
<!--##examples-for `Tuple`##-->
* `${tattrs}`: ``#[doc=" Title for `Tuple`"] #[repr(C)]``
* `${tattrs repr}`: ``#[repr(C)]``
* `${tattrs repr, deftly}`: ``#[deftly(unused)] #[repr(C)]``
* `${tattrs ! derive, doc}`: ``#[deftly(unused)] #[repr(C)] #[derive_deftly(SomeOtherTemplate)]``
##### For `Enum`
* `${vattrs deftly}` for `UnitVariant`: `#[deftly(value="enum_variant")]`
<div id="x:findex">
<div id="x:vindex">
### `$findex` `$vindex` -- field/variant numerical index (**beta**)
</div>
</div>
The numerical index of the field or variant, starting at 0.
Can be used as a number, or a tuple field name.
This feature is available only in [**beta**].
#### Examples
* `$findex`: `0`, `1`, ..
* `$vindex` for `Enum`: `0`, `1`, ..
* `$vindex` for `Struct`: `0`
<div id="x:paste">
<div id="x:paste_spanned">
### `${paste ...}`, `$<...>`, `${paste_spanned}` -- identifier pasting
</div>
</div>
Expands the contents and pastes it together into a single identifier.
The contents may only contain identifer fragments, strings (`"..."`),
and (certain) expansions.
Supported expansions are `$ftype`, `$ttype`, `$tdeftype`, `$Xname`,
`${Xmeta as str / ty / path / ident}`,
`$<...>`,
`${paste ...}`,
`${CASE_CHANGE ...}`,
`$tdefkwd`,
as well as conditionals and repetitions.
The contents can contain at most one occurrence of
a more complex type expansion `${Xtype}`
(or `${Xmeta as ty)`),
which must refer to a path (perhaps with generics, and/or surrounding `( )`).
Then the pasting will be applied to the final path element identifier,
and the surroundings reproduced unaltered.
Iff necessary, the result will be a raw identifier.
The span (for hygiene and error reporting) is that of the `${paste }`
invocation in the template.
`${paste_spanned SPAN CONTENT}`
allows control of the identifier "span",
which is used by Rust to control hygiene and error reporting.
`CONTENT` is pasted together, and then the span from `SPAN` is applied.
Both are positional arguments.
`$fname`, `$ftype` and `$vname` are good options for `SPAN`.
Explicitly setting the span can have surprising results;
some testing (even, experimentation) may be needed.
Meta attributes used in `SPAN` do not count as having been used,
for the purposes of unused attribute checking;
if necessary, use `${ignore }`.
Available only in [**beta**].
#### Examples
* `$<Zingy $ftype Builder>` for `TupleVariant`:
`« std::iter::ZingyOnceBuilder::<T> »`
* `${paste x_ $fname}` for tuple: `x_0`
* `${paste_spanned $vname { x_ $fname }}` for tuple: `x_0`,
(with the span of `$vname`)
* `${paste $fname _x}` for tuple: error, ``constructed identifier "0_x" is invalid``
<div id="x:concat">
### `${concat ...}` - string literal concatenation (**beta**)
</div>
Concatenates the content and expands to a string literal.
Only certain contents are allowed:
* Strings literals (`"..."`):
the contents of the string is used.
* Expansions that expand to identifiers:
the text of the identifier is used.
For raw identifiers, only the identifier name is used.
* Expansions that expand to types:
the type's source code text is used (as if with `stringify!`).
**The precise representation is neither defined nor stable!**
Whitespace, `::` and even `« »` may be added or removed!
The result can be used in documentation or messages
but should not reinterpreted as Rust code,
nor compared for equality.
* Expansions that expand to literal strings:
`${Xmeta as str}`,
and the non-identifier case conversions: `${kebab_case ...}` etc.
So, supported expansions are
those allowed in [`${paste ...}`](#x:paste),
all case conversions,
and `${concat }` itself.
`${concat }` does the jobs of `std::concat!` and `std::stringify!`
but can be used in more places and is more convenient.
This feature is available only in [**beta**].
#### Examples
* `${concat "first" "second"}`: `"firstsecond"`
* `${concat $tname "Suffix"}`: `"TupleSuffix"`
* `${concat $ttype "Suffix"}`: `"Tuple::<'a, 'l, T, C>Suffix"`
* `${concat $<$ttype Suffix>}`: `"TupleSuffix::<'a, 'l, T, C>"`
* `${concat "Prefix" $ftype}`: `"Prefix<T as TryInto<u8>>::Error"`
* `${concat $<Prefix $ftype>}`: `"<T as TryInto::<u8>>::PrefixError"`
* `${concat ${snake_case $vname}}`: `"named_variant"`
* `${concat $<r#raw_ident>}`: `"raw_ident"`
### `${CASE_CHANGE ...}` -- case changing
Expands the content, and changes its case
(eg. uppercase to lowercase, etc.
See [Case changing](#case-changing).
`CASE_CHANGE` is one of the values listed there.
<div id="x:when">
### `${when CONDITION}` -- filtering out repetitions by a predicate
</div>
Allowed only within repetitions, and only at the toplevel
of the repetition,
before other content.
Skips this repetition if the `CONDITION` is not true.
#### Example
* `$( ${when vmeta(value)} ${vmeta(value) as str} )` for `Enum`: `"enum_variant"`
<div id="x:if">
### `${if COND1 { ... } else if COND2 { ... } else { ... }}` -- conditional
</div>
Conditionals. The else clause is, of course, optional.
The `else if` between arms is also optional,
but `else` in the fallback clause is mandatory.
So you can write `${if COND1 { ... } COND2 { ... } else { ... }`.
#### Examples
* `${if is_enum { E } is_struct { S }}` for `Enum`: `E`
* `${if is_enum { E } is_struct { S }}` for others: `S`
* `$( ${if v_is_named { N } v_is_tuple { T }} )` for `Enum`: `T N`
* `$( ${if v_is_named { N } v_is_tuple { T } else { X }} )` for `Enum`: `X T N`
* `${if v_is_unit { U } tmeta(gentype) { GT }}` for `Unit`: `U`
<div id="x:select1">
### `${select1 COND1 { ... } else if COND2 { ... } else { ... }}` -- expect precisely one predicate
</div>
Conditionals which insist on exactly one of the tests being true.
Syntax is identical to that of `${if }`.
*All* of the `COND` are always evaluated.
Exactly one of them must be true;
or, none of them, but only if an `else` is supplied -
otherwise it is an error.
#### Examples
* `${select1 is_enum { E } is_struct { S }}`: `E`, `S`
* `${select1 v_is_named { N } v_is_tuple { T }}` for `Enum`: rejected, ``no conditions matched, and no else clause``
* `$( ${select1 v_is_named { N } v_is_tuple { T } else { X }} )` for `Enum`: `X T N`
* `${select1 v_is_unit { U } tmeta(gentype) { GT }}` for `Unit`: rejected, ``multiple conditions matched``
<div id="x:for">
### `${for fields { ... }}`, `${for variants { ... }}`, `$( )` -- repetition
</div>
`${for ...}` expands the contents once per field, or once per variant.
`$( ... )` expands the input with an appropriate number of iterations -
see [Repetition and nesting](#repetition-and-nesting).
<div id="x:crate">
### `$crate` -- root of template crate
</div>
`$crate` always refers to the root of the crate
defining the template.
Within an `export`ed template,
being expanded in another crate,
it refers to the crate containing the template definition.
In templates being used locally,
it refers to the current crate, ie simply `crate`.
This is similar to the `$crate` builtin expansion
in `macro_rules!`.
<div id="x:tdefkwd">
### `$tdefkwd` -- keyword introducing the new data structure
</div>
Expands to `struct`, `enum`, or `union`.
<div id="x:fdefine">
<div id="x:tdefvariants">
<div id="x:vdefbody">
### `$tdefvariants`, `$vdefbody`, `$fdefine` -- tools for defining types
</div>
</div>
</div>
These, used together, allow the template to expand to a
new definition, mirroring the driver type in form.
**`${tdefvariants VARIANTS..}`** expands to `{ VARIANTS.. }` for an enum,
or just `VARIANTS..` otherwise.
Usually, it would contain a `$( )` repeating over the variants,
expanding `$vdefbody` for each one.
**`${vdefbody VNAME FIELDS..}`** expands to the definition of a variant,
with a appropriate delimiters.
`VNAME` is in the standard syntax for a positional argument,
and `FIELDS..` is the rest of the content.
Usually, `FIELDS..` would contain a `$( )` repeating over the fields,
using `$fdefine` to introduce each one.
Specifically:
<!--##examples-possibilities-blockquote##-->
<!--iiiiiiiiiiiiiiiiiiiiiii fffffffffffffffffffff oooooooooooooooooo ###############-->
```rust,dd-directly
# let _ = r##"
${vdefbody VNAME FIELDS} for unit FIELDS; [*] ie ;
${vdefbody VNAME FIELDS} for tuple ( FIELDS );
${vdefbody VNAME FIELDS} for braced struct { FIELDS }
${vdefbody VNAME FIELDS} for unit variant VNAME FIELDS, [*] ie VNAME,
${vdefbody VNAME FIELDS} for tuple variant VNAME ( FIELDS ),
${vdefbody VNAME FIELDS} for braced variant VNAME { FIELDS },
# "##;
```
**`${fdefine FNAME}`** expands to `FNAME:` in the context of
named fields (a "struct" or "struct variant"),
or nothing otherwise.
`FNAME` is in the standard syntax for a positional argument,
`[*]`: In the unit and unit variant cases,
`FIELDS` ought to expand to nothing;
otherwise, the expansion of `$vdefbody`
will probably be syntactically invalid in context.
#### Example
```rust,dd-directly
# let _ = r##"
$tvis $tdefkwd $<$tname Copy><$tdefgens>
${tdefvariants $(
${vdefbody $<$vname Copy> $(
$fdefvis ${fdefine $<$fname _copy>} $ftype,
) }
) }
# "##;
```
<!--##examples-for-toplevels-concat Tuple Enum##-->
Expands to (when applied to `Tuple` and `Enum`):
```rust,dd-directly
# let _ = r##"
struct TupleCopy<'a, 'l: 'a, T: Display = usize, const C: usize = 1,>(
&'a &'l T,
);
pub enum EnumCopy<'a, 'l: 'a, T: Display = usize, const C: usize = 1,> {
UnitVariantCopy,
TupleVariantCopy(std::iter::Once::<T>,),
NamedVariantCopy { field_copy: &'l &'a T, ... },
}
# "##;
```
<div id="x:ignore">
### `${ignore ..}` -- Expand but then discard
</div>
`${ignore CONTENT}` expands `CONTENT`, and then discards it.
The `${ignore ..}` therefore expands to nothing.
All side-effects of `CONTENT` *do* occur. So:
if expanding `CONTENT` causes an error,
`${ignore }` *does* report that error;
the content of `${ignore }` *can* affect
the repetition scope of its surroundings.
`${ignore }` is permitted in `${paste }` and case changing.
<div id="x:dbg">
<div id="x:dbg_all_keywords">
### `${dbg ..}`, `$dbg_all_keywords` -- Debugging output
</div>
</div>
`${dbg { CONTENT }}` expands to the expansion of `CONTENT`,
but it also prints the expansion to the compiler stderr.
`${dbg "NOTE" { CONTENT }}` adds the note `"NOTE"`
to the heading of the expansion dump,
for identification purposes.
`$dbg_all_keywords` dumps expansions of all keywords:
It prints a listing of all the available expansion keywords,
and conditions,
along with their expansions and values.
When invoked at the toplevel,
it prints a report for each variant and field.
(The output goes to the compiler's stderr;
the actual expansion is empty.)
This can be helpful to see which expansion keywords
might be useful for a particular task.
(Before making a final selection of keyword
you probably want to refer to this reference manual.)
You will not want to leave these options in production code,
as they make builds noisy.
See also
the [`dbg` expansion option](#dbg--print-the-expansion-to-stderr-for-debugging),
and
the [`dbg` condition](#dbg--debug-dump-of-condition-value).
#### Example
```rust
# use derive_deftly::{Deftly, derive_deftly_adhoc};
#[derive(Deftly)]
#[derive_deftly_adhoc]
enum Enum {
Unit,
Tuple(usize),
Struct { field: String },
}
derive_deftly_adhoc! {
Enum:
$dbg_all_keywords
// ... rest of the template you're developing ...
}
```
<div id="x:defcond">
<div id="x:define">
### `${define ...}`, `${defcond ...}` -- user-defined expansions and conditions
</div>
</div>
`${define NAME BODY}` defines a reuseable piece of template.
Afterwards, `$NAME` (and `${NAME}`) expand `BODY`.
`${defcond NAME CONDITION}` defines a reuseable condition.
Afterwards, the name `NAME` can be used as a condition -
evaluating `CONDITION`.
`NAME` is an identifier.
It may not start with a lowercase letter or underscore:
those expansion names are reserved for
derive-deftly's built-in functionality.
`BODY` is in the
[standard syntax for positional arguments](#named-and-positional-template-arguments-to-expansions-and-conditions).
When generating Rust code, be careful about operator precedence:
see [Precedence considerations](#precedence-considerations).
`CONDITION` is in the standard syntax for a condition.
`NAME` is visible after its definition in the same template or group,
including in inner templates and groups.
Definitions may be re-defined, in the same scope, or inner scopes.
Scope is dynamic,
both for derive-deftly built-ins and user definitions:
`BODY` and `CONDITION` are captured
without expansion/evaluation at the site of `$define`/`$defcond`,
and the contents expanded/evaluated
each time according
to the values and definitions prevailing
in the dynamic context where `NAME` is used.
(Therefore, you can `$define`/`$defcond` an identifier
at a point where its contents are not in scope,
and expand it later when they are.)
`${NAME}` may only be used
inside pasting and case changing
if `BODY` was precisely an invocation of `${paste }` or `$<...>`.
`${NAME}` may only be used
inside `${concat ...}`
if `BODY` was precisely an invocation of `${concat }`, `${paste }` or `$<...>`.
You can define an expansion and a condition with the same name;
they won't interfere.
#### Examples
* `${define VN $vname} ${for variants { $VN }}`:
`UnitVariant TupleVariant NamedVariant`
* `${define FN $<$fname _>} $<${for fields { "F" $FN }}>`:
`F0_`, `Ffield_Ffield_b_`
##### Example including a condition
```rust,dd-directly
# let _ = r##"
${define T_FIELDS ${paste $tname Fields}}
// Note that fvis is not in scope here; that's okay,
// but we can only _use_ F_ENABLE when fvis _is_ in scope.
${defcond F_ENABLE all(fvis, v_is_named)}
$tvis struct $T_FIELDS { $(
${when F_ENABLE} $fvis $fname: bool,
) }
$tvis const ${shouty_snake_case ALL_ $T_FIELDS}: $T_FIELDS = { $(
${when F_ENABLE} $fname: true,
) };
# "##;
```
<!--##examples-for-toplevels-concat Unit Tuple Struct##-->
Expands to (for `Unit`, `Tuple` and `Struct`):
```rust,dd-directly
# let _ = r##"
pub struct UnitFields {}
pub const ALL_UNIT_FIELDS: UnitFields = {};
struct TupleFields {}
const ALL_TUPLE_FIELDS: TupleFields = {};
struct StructFields {
pub field: bool,
}
const ALL_STRUCT_FIELDS: StructFields = {
field: true,
};
# "##;
```
<div id="x:error">
### `${error ...}` -- explicitly throw a compile error
</div>
* `${error "message"}`: equivalent to `${error message="message"}`.
* `${error message=MESSAGE [span=SPAN]}`,
([**beta**]),
using the usual
[syntax for named arguments](#named-and-positional-template-arguments-to-expansions-and-conditions).
Generates a compilation error, if expanded.
This can be used anywhere a derive-deftly expansion is allowed;
(unlike std's `compile_error!`,
which, like any Rust macro, is permitted only in certain syntactic contexts).
`MESSAGE` must be valid within [`${concat }`](#x:concat).
#### Spans (locations at which the error is reported)
`SPAN` specifies the principal location of the error.
derive-deftly will also always produce a copy of the error
pointing at the specific driver, variant, and field,
in the context of which this `${error }` was expanded,
so use of `span=SPAN` is not normally necessary.
To report error which was caused by the interaction of multiple inputs,
write `${error }` several times.
Good practice is to use the same message for each location,
and distinguish them by appending notes in the form `" (LOCATION)"`.
#### Examples
* `${error "simple error"}`: error, ``simple error``
* `${error message="as arg"}`: error, ``as arg``
* `${error message="with span" span=$ftype}`: error, ``with span``
* `${error message=${concat "bad " ${tmeta(simple) as str}}}` for `Unit`: error, ``bad String``
## Conditions
Conditions all start with a `KEYWORD`.
They are found within `${if }`, `${when }`, and `${select1 }`.
<!-- ## maint/check-keywords-documented conditions ## -->
<div id="c:fdefvis">
<div id="c:fvis">
<div id="c:tvis">
### `fvis`, `tvis`, `fdefvis` -- test for public visibility
</div>
</div>
</div>
True iff the field, or the whole toplevel type, is `pub`.
See
[`$fvis`, `$tvis` and `$fdefvis`](#fvis-tvis-fdefvis--visibility)
for details of the semantics (especially for enums),
and the difference between `$fvis` and `$fdefvis`.
Within-crate visibility, e.g. `pub(crate)`, is treated as "not visible"
for the purposes of `fvis` and `tvis`
(although the `$fvis` and `$tvis` expansions will handle those faithfully).
#### Examples
* `tvis`: true for `Unit`, and `Enum`
* `fvis`: true for `field` in `Struct`, and fields in `Enum`
* `fdefvis`: true for `field` in `Struct`
<!--##examples-ignore##-->
And in each case, false for all others.
(Refer to the [example structs](#structs-used-in-examples), below.)
<div id="c:fmeta">
<div id="c:tmeta">
<div id="c:vmeta">
### `fmeta(NAME)`, `vmeta(NAME)`, `tmeta(NAME)` -- `#[deftly]` attributes
</div>
</div>
</div>
Looks for `#[deftly(NAME)]`.
True iff there was such an attribute.
The condition is true if there is at least one matching entry,
and (unlike `${Xmeta}`)
the corresponding driver attribute does not need to be a `LIT`.
So `Xmeta(SUB(NAME))` is true if the driver has
`#[deftly(SUB(NAME(INNER=...)))]` or `#[deftly(SUB(NAME))]` or
`#[deftly(SUB(NAME=LIT))]` or even `#[deftly(SUB(NAME()))]`.
`Xmeta(SUB(NAME))` works, just as with the `${Xmeta ...}` expansion.
See [`${Xmeta ...}`](#tmeta-vmeta-fmeta--deftly-attributes)
for information about namespacing and handling of unused attributes.
#### Examples
* `tmeta(unused)`: true for `Tuple`
* `tmeta(gentype)`: true for `Unit`
* `vmeta(value)`: true for `Unit`, and `Enum::UnitVariant`
* `fmeta(nested)`: true for `field` in `Struct`
<div id="c:is_enum">
<div id="c:is_struct">
<div id="c:is_union">
### `is_struct`, `is_enum`, `is_union`
</div>
</div>
</div>
The driver data structure is a struct, enum, or union, respectively.
Prefer to avoid these explicit tests,
when writing a template to work with either structs or enums.
Instead,
use `match` and `$vpat` for deconstructing values,
and `$vtype` for constructing them.
Use `$tdefvariants` when defining a derived type.
<div id="c:v_is_named">
<div id="c:v_is_tuple">
<div id="c:v_is_unit">
### `v_is_unit`, `v_is_tuple`, `v_is_named`
</div>
</div>
</div>
Whether and what kind of fields there are.
Prefer to avoid these explicit tests,
when writing a template to work with any shape of structure.
Instead,
match using Rust's universal `Typename { }` syntax,
possibly via `$vpat` and `$fpatname`,
or via `$vtype`.
The `Typename { }` syntax can be used for matching and constructing
all kinds of structures, including units and tuples.
Use `$vdefbody` and `$fdefine` when defining a derived type.
#### Examples
* `v_is_unit`: true for `struct Unit;`, `SimpleUnit`, and `Enum::UnitVariant;`
* `v_is_tuple`: true for `struct Tuple(...);`, and `Enum::TupleVariant(...);`
* `v_is_named`: true for `struct Struct {...}`, and `Enum::NamedVariant {...}`
<div id="c:tgens">
### `tgens`
</div>
Whether the top-level type has generics.
#### Examples
* `tgens`: true for `Unit`, `Tuple`, `Struct`, `Enum`
<div id="c:approx_equal">
<div id="c:is_empty">
### `is_empty(..)`, `approx_equal(ARG1, ARG2)` -- equality comparison (token comparison)
</div>
</div>
`is_empty` expands the content, and is true if
the expansion produced no tokens.
`approx_equal` expands the two `ARGS`s (as series of tokens)
and compares them for (a kind of) equality.
Span is disregarded, so
two identifiers that would refer to different types or values,
but which have the same name,
would count as equal.
Spacing is disregarded, even between punctuation characters.
For example, `approx_equal` regards `<<` as equal to `< <`.
This means expansions might count as equal
even if the Rust compiler would accept one and reject the other;
and, expansions might count as equal
even if macros could tell the difference.
Also,
`None`-delimited groups,
which are used by macros (including derive-deftly and `macro_rules!`)
for preventing precedence surprises,
are flattened - the wrapping by an invisible group is ignored.
This means that two expressions with different values,
due to different evaluation orders,
can compare equal!
If both inputs are valid Rust types,
they will only compare equal if they are syntactically the same.
(Note that different ways of writing the same type
are treated as different:
for example, `Vec<u8>` is not equal to `Vec<u8, Global>`
and `std::os::raw::c_char` is not equal to `std::ffi::c_char`.)
Literals are generally compared by value:
* Integer literals are compared by value, ignoring any type suffixes.
(Both values `>u64` is unsupported.)
* String, byte and character literals are compared by value.
`c"..."` literals are unsupported.
(Suffixes are unsupported.).
* Floating point literals are compared *textually*, not by value;
so are considered equal only if written identically.
* Negative literals are compared as two tokens,
`-` and a nonnegative literal.
* Comparison of other literals is unsupported.
Raw identifiers are considered unequal to non-raw identifiers,
even if the designated identifier is the same.
<!--
The alternative is either to say that `r#for` == `for`,
or to somehow make equality depend on whether *this* version of Rust
considers the thing a keyword.
"*This* version of Rust" ought to be the edition, but whose edition?
Also I don't think we can calculate that.
-->
The `ARG`s are in derive-deftly's usual
[syntax for positional arguments](#named-and-positional-template-arguments-to-expansions-and-conditions).
<div id="c:all">
<div id="c:any">
<div id="c:false">
<div id="c:not">
<div id="c:true">
### `false`, `true`, `not(CONDITION)`, `any(COND1,COND2,...)`, `all(COND1,COND2,...)` -- boolean logic
</div>
</div>
</div>
</div>
</div>
`any()` and `all()` short circuit:
as soon as they have established they answer,
they don't test the remaining conditions.
(This affects error handling,
and meta attribute use checking.)
<div id="c:dbg">
### `dbg(...)` -- Debug dump of condition value
</div>
`dbg(CONDITION)` evaluates `CONDITION`,
but it also prints the boolean value to the compiler stderr.
`dbg("NOTE", CONDITION}` adds the note `"NOTE"`
to the debug message
for identification purposes.
You will not want to leave this option in production code,
as it makes builds noisy.
See also
the [`${dbg ..}` expansion](#dbg--dbg_all_keywords--debugging-output)
and
the [`dbg` expansion option](#dbg--print-the-expansion-to-stderr-for-debugging).
<div id="x:kebab_case">
<div id="x:lower_camel_case">
<div id="x:pascal_case">
<div id="x:shouty_kebab_case">
<div id="x:shouty_snake_case">
<div id="x:snake_case">
<div id="x:title_case">
<div id="x:train_case">
<div id="x:upper_camel_case">
<div id="kebab_case">
<div id="shouty_kebab_case">
<div id="title_case">
<div id="train_case">
## Case changing
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
`${CASE_CHANGE ...}`
(where `CASE_CHANGE` is one of the keywords in the table, below)
makes an identifier
with a different case to the input which produces it.
This is useful to make identifiers with the natural spelling
for their kind,
out of identifiers originally for something else.
If the content's expansion is a path, only the final segment is changed.
The content must be valid within `${paste }`,
and is treated the same way.
`${CASE_CHANGE }` may appear within pasting and vice versa.
`${kebab_case ..}`, `${shouty_kebab_case`},
`${title_case }`, and `${train_case }`
don't generate valid Rust identifiers and
are only allowed within [`${concat }`](#x:concat).
(Therefore they are [**beta**] features.)
This table shows the supported case styles.
Note that changing the case can add and remove underscores.
The precise details are as for [`heck`],
which is used to implement the actual case changing.
<!-- ## maint/check-keywords-documented cases ## -->
| `CASE_CHANGE` | `CASE_CHANGE` aliases | Name in [`heck`] | Example of results | Allowed in |
|----------------------|----------------------------------|-----------------------------------|-----------------------|---------------|
| `pascal_case` | `upper_camel_case` | `UpperCamelCase` | `PascalCase` | anywhere |
| `snake_case` | | `SnakeCase` | `snake_case` | anywhere |
| `shouty_snake_case` | | `ShoutySnakeCase` | `SHOUTY_SNAKE_CASE` | anywhere |
| `lower_camel_case` | | `LowerCamelCase` | `lowerCamelCase` | anywhere |
| `kebab_case` | | `KebabCase` | `kebab-case` | `${concat }` |
| `shouty_kebab_case` | | `ShoutyKebabCase` | `shouty-kebab-case` | `${concat }` |
| `title_case` | | `TitleCase` | `Title Case` | `${concat }` |
| `train_case` | | `TrainCase` | `Train-Case` | `${concat }` |
#### Examples
* `${shouty_snake_case $ttype}`: `ENUM::<'a, 'l, T, C>`
* `${pascal_case $fname}`: `Field`, `FieldB`
* `${pascal_case x_ $fname _y}`: `XFieldBY`
* `$<x_ ${lower_camel_case $fname} _y>`: `x_fieldB_y`
* `${lower_camel_case $fname}` for tuple: error, ``constructed identifier "0" is invalid``
* `${concat ${kebab_case $fname}}`: `"field-b"`
* `${concat ${shouty_kebab_case $fname}}`: `"FIELD-B"`
* `${concat ${title_case $fname}}`: `"Field B"`
* `${concat ${train_case $fname}}`: `"Field-B"`
## Expansion options
You can pass options,
which will be applied to each relevant template expansion:
```rust,ignore
// Expand TEMPLATE for DataStructureType, with OPTIONS
derive_deftly_adhoc! { DataStructureType OPTIONS,... : TEMPLATE }
// Define a template Template which always expands with OPTIONS
define_derive_deftly! { Template OPTIONS,...: TEMPLATE }
// Expand Template for DataStructureType, with OPTIONS
#[derive(Deftly)]
#[derive_deftly(Template[OPTIONS,...])]
struct DataStructureType {
# }
```
Multiple options, perhaps specified in different places,
may apply to a single expansion.
Even multiple occurrences of the same option are fine,
so long as they don't contradict each other.
The following expansion options are recognised:
<div id="eo:expect">
### `expect items`, `expect expr` -- syntax check the expansion
</div>
Syntax checks the expansion,
checking that it can be parsed as items, or as an expression.
If not, it is an error.
Also, then, an attempt is made to produce
compiler error message(s) pointing to the syntax error
*in a copy of the template expansion*,
as well as reporting the error at
the part of the template or driver which generated
that part of the expansiuon.
This is useful for debugging.
Due to limitations in Rust, the copy of the template expansion
cannot properly represent the results of the
[`$crate` expansion](#x:crate).
When an `expect` fails for an template imported from another crate,
you may also see spurious name resolution errors.
These should be ignored.
Note that a template defined with `define_derive_adhoc!`
must always expand to items, anyway,
because Rust insists that a `#[derive]` expands to items.
<div id="eo:for">
### `for struct`, `for enum`, `for union` -- Insist on a particular driver kind
</div>
Checks the driver data structure kind
against the `for` option value.
If it doesn't match, it is an error.
This is useful to produce good error messages:
Normally, derive-deftly does not explicitly check the driver kind,
and simply makes it available to the template via expansion variables.
But, often,
a template is written only with a particular driver kind in mind,
and otherwise produces syntactically invalid output
leading to confusing compiler errors.
This option is only allowed in a template,
not in a driver's `#[derive_deftly]` attribute.
<div id="eo:dbg">
### `dbg` -- Print the expansion to stderr, for debugging
</div>
Prints the template's expansion to stderr, during compilation,
for debugging purposes.
You will not want to leave this option in production code,
as it makes builds noisy.
See also
the [`${dbg ..}` expansion](#dbg--dbg_all_keywords--debugging-output),
the [`dbg` condition](#dbg--debug-dump-of-condition-value),
the [`$dbg_all_keywords` expansion](#dbg--dbg_all_keywords--debugging-output).
<div id="eo:beta_deftly">
### `beta_deftly` -- Enable unstable template features
</div>
Enables
[beta template features](../doc_changelog/index.html#t:beta).
This option is only allowed in a template or module,
not in a driver's `#[derive_deftly]` attribute.
### Expansion options example
```
# use derive_deftly::{define_derive_deftly, Deftly};
define_derive_deftly! { Nothing for struct, expect items: }
#[derive(Deftly)]
#[derive_deftly(Nothing[expect items, dbg])]
struct Unit;
```
This defines a reuseable template `Nothing`
which can be applied only to structs,
and whose output is syntax checked as item(s).
(The template's actual expansion is empty,
so it does indeed expand to zero items.)
Then it applies that to template to `struct Unit`,
restating the requirement that the expansion should be item(s).
and dumping the expansion to stderr during compilation.
## Precedence considerations
When using
`${Xmeta as token_stream}`,
and user-defined expansions (`${define ...}`)
it can be necessary to add `{ }` or `( )`
to avoid surprising expansions due to operator precedence.
```
# use derive_deftly::{Deftly, derive_deftly_adhoc};
#[derive(Deftly)]
#[derive_deftly_adhoc]
struct S(u32, u32);
let product = derive_deftly_adhoc!(
S:
${define F_PLUS_TWO {$fname + 2}}
${for fields { $F_PLUS_TWO * }} 1
// (0 + 2) * (1 + 2) * 1 = 2 * 3 * 1 = 6
// but this is
// 0 + 2 * 1 + 2 * 1 = 0 + (2 * 1) + (2 * 1) = 4
);
assert_eq!(product, 4);
```
Rust demands that *types* are expressed unambiguously,
so precedence problems, and lack of `( )` (or `< >`),
are detected by the compiler, and rejected.
<div id="t:none-delimiters">
### `None`-delimited groups
</div>
In theory Rust has a feature that would help with this:
syntactic groups
[can be surrounded by invisible delimiters](https://doc.rust-lang.org/proc_macro/enum.Delimiter.html#variant.None).
However, as of May 2024 this feature does not work (and has never worked).
See [rust-lang/rust#67062](https://github.com/rust-lang/rust/issues/67062).
Nevertheless, derive-deftly surrounds certain expansions with
None-delimited groups.
These are shown in the example outputs, in this reference,
surrounded by guillemets `« »`.
This is done for
* `$ftype`
* `$Xmeta as ty`
<div id="t:example-structs">
## Structs used in examples
</div>
The example expansions in the syntax reference
are those generated for the following driver types:
<!--##examples-structs##-->
```rust,dd-directly
# let _ = r##"
#
# use std::fmt::Display;
# use std::convert::TryInto;
#
#[derive(Deftly)]
#[derive(Clone)]
struct SimpleUnit;
#[derive(Deftly)]
#[derive(Clone)]
#[deftly(simple="String", gentype="Vec<i32>")]
#[deftly(value="unit_toplevel")]
pub struct Unit<const C: usize = 1>;
#[derive(Deftly, Clone)]
/// Title for `Tuple`
#[deftly(unused)]
#[repr(C)]
#[derive_deftly(SomeOtherTemplate)]
struct Tuple<'a, 'l: 'a, T: Display = usize, const C: usize = 1>(
&'a &'l T,
);
#[derive(Deftly)]
struct Struct<'a, 'l: 'a, T: Display = usize, const C: usize = 1>
where T: 'l, T: TryInto<u8>
{
#[deftly(nested(inner = "42"))]
pub field: &'l &'a T,
pub(crate) field_b: String,
}
#[derive(Deftly)]
pub enum Enum<'a, 'l: 'a, T: Display = usize, const C: usize = 1>
where T: 'l, T: TryInto<u8>
{
#[deftly(value="enum_variant")]
UnitVariant,
#[deftly(items="type T = i32; const K: T = 7;")]
TupleVariant(std::iter::Once::<T>),
NamedVariant {
field: &'l &'a T,
field_b: String,
field_e: <T as TryInto<u8>>::Error,
field_o: Option<i32>,
},
}
# "##;
```
<div id="t:index">
## Keyword index
</div>
<!-- @dd-navbar in-reference .. -->
<!-- this line automatically maintained by update-navbars --><nav style="text-align: right; margin-bottom: 12px;">[ <em>docs: <a href="../index.html">crate top-level</a> | <a href="../index.html#overall-toc">overall toc, macros</a> | <a href="../doc_reference/index.html"><strong>template etc. reference</strong></a> | <a href="https://diziet.pages.torproject.net/rust-derive-deftly/latest/guide/">guide/tutorial</a></em> ]</nav>
### Expansions index
<!--## index x ##-->
* **$c…**: [`concat`](#x:concat), [`crate`](#x:crate)
* **$d…**: [`dbg`](#x:dbg), [`dbg_all_keywords`](#x:dbg_all_keywords), [`defcond`](#x:defcond), [`define`](#x:define)
* **$e…**: [`error`](#x:error)
* **$f…**: [`fattrs`](#x:fattrs), [`fdefine`](#x:fdefine), [`fdefvis`](#x:fdefvis), [`findex`](#x:findex), [`fmeta`](#x:fmeta), [`fname`](#x:fname), [`for`](#x:for), [`fpatname`](#x:fpatname), [`ftype`](#x:ftype), [`fvis`](#x:fvis)
* **$i…**: [`if`](#x:if), [`ignore`](#x:ignore)
* **$k…**: [`kebab_case`](#x:kebab_case)
* **$l…**: [`lower_camel_case`](#x:lower_camel_case)
* **$p…**: [`pascal_case`](#x:pascal_case), [`paste`](#x:paste), [`paste_spanned`](#x:paste_spanned)
* **$s…**: [`select1`](#x:select1), [`shouty_kebab_case`](#x:shouty_kebab_case), [`shouty_snake_case`](#x:shouty_snake_case), [`snake_case`](#x:snake_case)
* **$t…**: [`tattrs`](#x:tattrs), [`tdefgens`](#x:tdefgens), [`tdefkwd`](#x:tdefkwd), [`tdeftype`](#x:tdeftype), [`tdefvariants`](#x:tdefvariants), [`tgens`](#x:tgens), [`tgnames`](#x:tgnames), [`title_case`](#x:title_case), [`tmeta`](#x:tmeta), [`tname`](#x:tname), [`train_case`](#x:train_case), [`ttype`](#x:ttype), [`tvis`](#x:tvis), [`twheres`](#x:twheres)
* **$u…**: [`upper_camel_case`](#x:upper_camel_case)
* **$v…**: [`vattrs`](#x:vattrs), [`vdefbody`](#x:vdefbody), [`vindex`](#x:vindex), [`vmeta`](#x:vmeta), [`vname`](#x:vname), [`vpat`](#x:vpat), [`vtype`](#x:vtype)
* **$w…**: [`when`](#x:when)
### Conditions index
<!--## index c ##-->
* **a…**: [`all`](#c:all), [`any`](#c:any), [`approx_equal`](#c:approx_equal)
* **d…**: [`dbg`](#c:dbg)
* **f…**: [`false`](#c:false), [`fdefvis`](#c:fdefvis), [`fmeta`](#c:fmeta), [`fvis`](#c:fvis)
* **i…**: [`is_empty`](#c:is_empty), [`is_enum`](#c:is_enum), [`is_struct`](#c:is_struct), [`is_union`](#c:is_union)
* **n…**: [`not`](#c:not)
* **t…**: [`tgens`](#c:tgens), [`tmeta`](#c:tmeta), [`true`](#c:true), [`tvis`](#c:tvis)
* **v…**: [`v_is_named`](#c:v_is_named), [`v_is_tuple`](#c:v_is_tuple), [`v_is_unit`](#c:v_is_unit), [`vmeta`](#c:vmeta)
|