cooklang 0.18.4

Cooklang parser with opt-in extensions
Documentation
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
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
// This file was autogenerated by some hot garbage in the `uniffi` crate.
// Trust me, you don't want to mess with it!

// swiftlint:disable all
import Foundation

// Depending on the consumer's build setup, the low-level FFI code
// might be in a separate module, or it might be compiled inline into
// this module. This is a bit of light hackery to work with both.
#if canImport(CooklangParserFFI)
    import CooklangParserFFI
#endif

private extension RustBuffer {
    /// Allocate a new buffer, copying the contents of a `UInt8` array.
    init(bytes: [UInt8]) {
        let rbuf = bytes.withUnsafeBufferPointer { ptr in
            RustBuffer.from(ptr)
        }
        self.init(capacity: rbuf.capacity, len: rbuf.len, data: rbuf.data)
    }

    static func empty() -> RustBuffer {
        RustBuffer(capacity: 0, len: 0, data: nil)
    }

    static func from(_ ptr: UnsafeBufferPointer<UInt8>) -> RustBuffer {
        try! rustCall { ffi_cooklang_bindings_rustbuffer_from_bytes(ForeignBytes(bufferPointer: ptr), $0) }
    }

    /// Frees the buffer in place.
    /// The buffer must not be used after this is called.
    func deallocate() {
        try! rustCall { ffi_cooklang_bindings_rustbuffer_free(self, $0) }
    }
}

private extension ForeignBytes {
    init(bufferPointer: UnsafeBufferPointer<UInt8>) {
        self.init(len: Int32(bufferPointer.count), data: bufferPointer.baseAddress)
    }
}

// For every type used in the interface, we provide helper methods for conveniently
// lifting and lowering that type from C-compatible data, and for reading and writing
// values of that type in a buffer.

// Helper classes/extensions that don't change.
// Someday, this will be in a library of its own.

private extension Data {
    init(rustBuffer: RustBuffer) {
        self.init(
            bytesNoCopy: rustBuffer.data!,
            count: Int(rustBuffer.len),
            deallocator: .none
        )
    }
}

// Define reader functionality.  Normally this would be defined in a class or
// struct, but we use standalone functions instead in order to make external
// types work.
//
// With external types, one swift source file needs to be able to call the read
// method on another source file's FfiConverter, but then what visibility
// should Reader have?
// - If Reader is fileprivate, then this means the read() must also
//   be fileprivate, which doesn't work with external types.
// - If Reader is internal/public, we'll get compile errors since both source
//   files will try define the same type.
//
// Instead, the read() method and these helper functions input a tuple of data

private func createReader(data: Data) -> (data: Data, offset: Data.Index) {
    (data: data, offset: 0)
}

/// Reads an integer at the current offset, in big-endian order, and advances
/// the offset on success. Throws if reading the integer would move the
/// offset past the end of the buffer.
private func readInt<T: FixedWidthInteger>(_ reader: inout (data: Data, offset: Data.Index)) throws -> T {
    let range = reader.offset ..< reader.offset + MemoryLayout<T>.size
    guard reader.data.count >= range.upperBound else {
        throw UniffiInternalError.bufferOverflow
    }
    if T.self == UInt8.self {
        let value = reader.data[reader.offset]
        reader.offset += 1
        return value as! T
    }
    var value: T = 0
    let _ = withUnsafeMutableBytes(of: &value) { reader.data.copyBytes(to: $0, from: range) }
    reader.offset = range.upperBound
    return value.bigEndian
}

/// Reads an arbitrary number of bytes, to be used to read
/// raw bytes, this is useful when lifting strings
private func readBytes(_ reader: inout (data: Data, offset: Data.Index), count: Int) throws -> [UInt8] {
    let range = reader.offset ..< (reader.offset + count)
    guard reader.data.count >= range.upperBound else {
        throw UniffiInternalError.bufferOverflow
    }
    var value = [UInt8](repeating: 0, count: count)
    value.withUnsafeMutableBufferPointer { buffer in
        reader.data.copyBytes(to: buffer, from: range)
    }
    reader.offset = range.upperBound
    return value
}

/// Reads a float at the current offset.
private func readFloat(_ reader: inout (data: Data, offset: Data.Index)) throws -> Float {
    return try Float(bitPattern: readInt(&reader))
}

/// Reads a float at the current offset.
private func readDouble(_ reader: inout (data: Data, offset: Data.Index)) throws -> Double {
    return try Double(bitPattern: readInt(&reader))
}

/// Indicates if the offset has reached the end of the buffer.
private func hasRemaining(_ reader: (data: Data, offset: Data.Index)) -> Bool {
    return reader.offset < reader.data.count
}

// Define writer functionality.  Normally this would be defined in a class or
// struct, but we use standalone functions instead in order to make external
// types work.  See the above discussion on Readers for details.

private func createWriter() -> [UInt8] {
    return []
}

private func writeBytes<S: Sequence>(_ writer: inout [UInt8], _ byteArr: S) where S.Element == UInt8 {
    writer.append(contentsOf: byteArr)
}

/// Writes an integer in big-endian order.
///
/// Warning: make sure what you are trying to write
/// is in the correct type!
private func writeInt<T: FixedWidthInteger>(_ writer: inout [UInt8], _ value: T) {
    var value = value.bigEndian
    withUnsafeBytes(of: &value) { writer.append(contentsOf: $0) }
}

private func writeFloat(_ writer: inout [UInt8], _ value: Float) {
    writeInt(&writer, value.bitPattern)
}

private func writeDouble(_ writer: inout [UInt8], _ value: Double) {
    writeInt(&writer, value.bitPattern)
}

/// Protocol for types that transfer other types across the FFI. This is
/// analogous to the Rust trait of the same name.
private protocol FfiConverter {
    associatedtype FfiType
    associatedtype SwiftType

    static func lift(_ value: FfiType) throws -> SwiftType
    static func lower(_ value: SwiftType) -> FfiType
    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> SwiftType
    static func write(_ value: SwiftType, into buf: inout [UInt8])
}

/// Types conforming to `Primitive` pass themselves directly over the FFI.
private protocol FfiConverterPrimitive: FfiConverter where FfiType == SwiftType {}

extension FfiConverterPrimitive {
    #if swift(>=5.8)
        @_documentation(visibility: private)
    #endif
    public static func lift(_ value: FfiType) throws -> SwiftType {
        return value
    }

    #if swift(>=5.8)
        @_documentation(visibility: private)
    #endif
    public static func lower(_ value: SwiftType) -> FfiType {
        return value
    }
}

/// Types conforming to `FfiConverterRustBuffer` lift and lower into a `RustBuffer`.
/// Used for complex types where it's hard to write a custom lift/lower.
private protocol FfiConverterRustBuffer: FfiConverter where FfiType == RustBuffer {}

extension FfiConverterRustBuffer {
    #if swift(>=5.8)
        @_documentation(visibility: private)
    #endif
    public static func lift(_ buf: RustBuffer) throws -> SwiftType {
        var reader = createReader(data: Data(rustBuffer: buf))
        let value = try read(from: &reader)
        if hasRemaining(reader) {
            throw UniffiInternalError.incompleteData
        }
        buf.deallocate()
        return value
    }

    #if swift(>=5.8)
        @_documentation(visibility: private)
    #endif
    public static func lower(_ value: SwiftType) -> RustBuffer {
        var writer = createWriter()
        write(value, into: &writer)
        return RustBuffer(bytes: writer)
    }
}

/// An error type for FFI errors. These errors occur at the UniFFI level, not
/// the library level.
private enum UniffiInternalError: LocalizedError {
    case bufferOverflow
    case incompleteData
    case unexpectedOptionalTag
    case unexpectedEnumCase
    case unexpectedNullPointer
    case unexpectedRustCallStatusCode
    case unexpectedRustCallError
    case unexpectedStaleHandle
    case rustPanic(_ message: String)

    var errorDescription: String? {
        switch self {
        case .bufferOverflow: return "Reading the requested value would read past the end of the buffer"
        case .incompleteData: return "The buffer still has data after lifting its containing value"
        case .unexpectedOptionalTag: return "Unexpected optional tag; should be 0 or 1"
        case .unexpectedEnumCase: return "Raw enum value doesn't match any cases"
        case .unexpectedNullPointer: return "Raw pointer value was null"
        case .unexpectedRustCallStatusCode: return "Unexpected RustCallStatus code"
        case .unexpectedRustCallError: return "CALL_ERROR but no errorClass specified"
        case .unexpectedStaleHandle: return "The object in the handle map has been dropped already"
        case let .rustPanic(message): return message
        }
    }
}

private extension NSLock {
    func withLock<T>(f: () throws -> T) rethrows -> T {
        lock()
        defer { self.unlock() }
        return try f()
    }
}

private let CALL_SUCCESS: Int8 = 0
private let CALL_ERROR: Int8 = 1
private let CALL_UNEXPECTED_ERROR: Int8 = 2
private let CALL_CANCELLED: Int8 = 3

private extension RustCallStatus {
    init() {
        self.init(
            code: CALL_SUCCESS,
            errorBuf: RustBuffer(
                capacity: 0,
                len: 0,
                data: nil
            )
        )
    }
}

private func rustCall<T>(_ callback: (UnsafeMutablePointer<RustCallStatus>) -> T) throws -> T {
    let neverThrow: ((RustBuffer) throws -> Never)? = nil
    return try makeRustCall(callback, errorHandler: neverThrow)
}

private func rustCallWithError<T, E: Swift.Error>(
    _ errorHandler: @escaping (RustBuffer) throws -> E,
    _ callback: (UnsafeMutablePointer<RustCallStatus>) -> T
) throws -> T {
    try makeRustCall(callback, errorHandler: errorHandler)
}

private func makeRustCall<T, E: Swift.Error>(
    _ callback: (UnsafeMutablePointer<RustCallStatus>) -> T,
    errorHandler: ((RustBuffer) throws -> E)?
) throws -> T {
    uniffiEnsureInitialized()
    var callStatus = RustCallStatus()
    let returnedVal = callback(&callStatus)
    try uniffiCheckCallStatus(callStatus: callStatus, errorHandler: errorHandler)
    return returnedVal
}

private func uniffiCheckCallStatus<E: Swift.Error>(
    callStatus: RustCallStatus,
    errorHandler: ((RustBuffer) throws -> E)?
) throws {
    switch callStatus.code {
    case CALL_SUCCESS:
        return

    case CALL_ERROR:
        if let errorHandler = errorHandler {
            throw try errorHandler(callStatus.errorBuf)
        } else {
            callStatus.errorBuf.deallocate()
            throw UniffiInternalError.unexpectedRustCallError
        }

    case CALL_UNEXPECTED_ERROR:
        // When the rust code sees a panic, it tries to construct a RustBuffer
        // with the message.  But if that code panics, then it just sends back
        // an empty buffer.
        if callStatus.errorBuf.len > 0 {
            throw try UniffiInternalError.rustPanic(FfiConverterString.lift(callStatus.errorBuf))
        } else {
            callStatus.errorBuf.deallocate()
            throw UniffiInternalError.rustPanic("Rust panic")
        }

    case CALL_CANCELLED:
        fatalError("Cancellation not supported yet")

    default:
        throw UniffiInternalError.unexpectedRustCallStatusCode
    }
}

private func uniffiTraitInterfaceCall<T>(
    callStatus: UnsafeMutablePointer<RustCallStatus>,
    makeCall: () throws -> T,
    writeReturn: (T) -> Void
) {
    do {
        try writeReturn(makeCall())
    } catch {
        callStatus.pointee.code = CALL_UNEXPECTED_ERROR
        callStatus.pointee.errorBuf = FfiConverterString.lower(String(describing: error))
    }
}

private func uniffiTraitInterfaceCallWithError<T, E>(
    callStatus: UnsafeMutablePointer<RustCallStatus>,
    makeCall: () throws -> T,
    writeReturn: (T) -> Void,
    lowerError: (E) -> RustBuffer
) {
    do {
        try writeReturn(makeCall())
    } catch let error as E {
        callStatus.pointee.code = CALL_ERROR
        callStatus.pointee.errorBuf = lowerError(error)
    } catch {
        callStatus.pointee.code = CALL_UNEXPECTED_ERROR
        callStatus.pointee.errorBuf = FfiConverterString.lower(String(describing: error))
    }
}

private class UniffiHandleMap<T> {
    private var map: [UInt64: T] = [:]
    private let lock = NSLock()
    private var currentHandle: UInt64 = 1

    func insert(obj: T) -> UInt64 {
        lock.withLock {
            let handle = currentHandle
            currentHandle += 1
            map[handle] = obj
            return handle
        }
    }

    func get(handle: UInt64) throws -> T {
        try lock.withLock {
            guard let obj = map[handle] else {
                throw UniffiInternalError.unexpectedStaleHandle
            }
            return obj
        }
    }

    @discardableResult
    func remove(handle: UInt64) throws -> T {
        try lock.withLock {
            guard let obj = map.removeValue(forKey: handle) else {
                throw UniffiInternalError.unexpectedStaleHandle
            }
            return obj
        }
    }

    var count: Int {
        map.count
    }
}

// Public interface members begin here.

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterUInt32: FfiConverterPrimitive {
    typealias FfiType = UInt32
    typealias SwiftType = UInt32

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> UInt32 {
        return try lift(readInt(&buf))
    }

    static func write(_ value: SwiftType, into buf: inout [UInt8]) {
        writeInt(&buf, lower(value))
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterDouble: FfiConverterPrimitive {
    typealias FfiType = Double
    typealias SwiftType = Double

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Double {
        return try lift(readDouble(&buf))
    }

    static func write(_ value: Double, into buf: inout [UInt8]) {
        writeDouble(&buf, lower(value))
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterString: FfiConverter {
    typealias SwiftType = String
    typealias FfiType = RustBuffer

    static func lift(_ value: RustBuffer) throws -> String {
        defer {
            value.deallocate()
        }
        if value.data == nil {
            return String()
        }
        let bytes = UnsafeBufferPointer<UInt8>(start: value.data!, count: Int(value.len))
        return String(bytes: bytes, encoding: String.Encoding.utf8)!
    }

    static func lower(_ value: String) -> RustBuffer {
        return value.utf8CString.withUnsafeBufferPointer { ptr in
            // The swift string gives us int8_t, we want uint8_t.
            ptr.withMemoryRebound(to: UInt8.self) { ptr in
                // The swift string gives us a trailing null byte, we don't want it.
                let buf = UnsafeBufferPointer(rebasing: ptr.prefix(upTo: ptr.count - 1))
                return RustBuffer.from(buf)
            }
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> String {
        let len: Int32 = try readInt(&buf)
        return try String(bytes: readBytes(&buf, count: Int(len)), encoding: String.Encoding.utf8)!
    }

    static func write(_ value: String, into buf: inout [UInt8]) {
        let len = Int32(value.utf8.count)
        writeInt(&buf, len)
        writeBytes(&buf, value.utf8)
    }
}

/**
 * Configuration for organizing ingredients into shopping aisles
 */
public protocol AisleConfProtocol: AnyObject {
    /**
     * Returns all categories in the order they appear in the aisle configuration file
     */
    func categories() -> [AisleCategory]

    /**
     * Returns the category name for a given ingredient
     *
     * # Arguments
     * * `ingredient_name` - The name of the ingredient to categorize
     *
     * # Returns
     * The category name if the ingredient is found, None otherwise
     */
    func categoryFor(ingredientName: String) -> String?

    /**
     * Returns the common name for an ingredient using aisle configuration
     *
     * Performs case-insensitive lookup against ingredient names and aliases.
     * Returns the original name if not found in the configuration.
     */
    func commonNameFor(ingredientName: String) -> String
}

/**
 * Configuration for organizing ingredients into shopping aisles
 */
open class AisleConf:
    AisleConfProtocol
{
    fileprivate let pointer: UnsafeMutableRawPointer!

    // Used to instantiate a [FFIObject] without an actual pointer, for fakes in tests, mostly.
    #if swift(>=5.8)
        @_documentation(visibility: private)
    #endif
    public struct NoPointer {
        public init() {}
    }

    // TODO: We'd like this to be `private` but for Swifty reasons,
    // we can't implement `FfiConverter` without making this `required` and we can't
    // make it `required` without making it `public`.
    public required init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
        self.pointer = pointer
    }

    // This constructor can be used to instantiate a fake object.
    // - Parameter noPointer: Placeholder value so we can have a constructor separate from the default empty one that may be implemented for classes extending [FFIObject].
    //
    // - Warning:
    //     Any object instantiated with this constructor cannot be passed to an actual Rust-backed object. Since there isn't a backing [Pointer] the FFI lower functions will crash.
    #if swift(>=5.8)
        @_documentation(visibility: private)
    #endif
    public init(noPointer _: NoPointer) {
        pointer = nil
    }

    #if swift(>=5.8)
        @_documentation(visibility: private)
    #endif
    public func uniffiClonePointer() -> UnsafeMutableRawPointer {
        return try! rustCall { uniffi_cooklang_bindings_fn_clone_aisleconf(self.pointer, $0) }
    }

    // No primary constructor declared for this class.

    deinit {
        guard let pointer = pointer else {
            return
        }

        try! rustCall { uniffi_cooklang_bindings_fn_free_aisleconf(pointer, $0) }
    }

    /**
     * Returns all categories in the order they appear in the aisle configuration file
     */
    open func categories() -> [AisleCategory] {
        return try! FfiConverterSequenceTypeAisleCategory.lift(try! rustCall {
            uniffi_cooklang_bindings_fn_method_aisleconf_categories(self.uniffiClonePointer(), $0)
        })
    }

    /**
     * Returns the category name for a given ingredient
     *
     * # Arguments
     * * `ingredient_name` - The name of the ingredient to categorize
     *
     * # Returns
     * The category name if the ingredient is found, None otherwise
     */
    open func categoryFor(ingredientName: String) -> String? {
        return try! FfiConverterOptionString.lift(try! rustCall {
            uniffi_cooklang_bindings_fn_method_aisleconf_category_for(self.uniffiClonePointer(),
                                                                      FfiConverterString.lower(ingredientName), $0)
        })
    }

    /**
     * Returns the common name for an ingredient using aisle configuration
     *
     * Performs case-insensitive lookup against ingredient names and aliases.
     * Returns the original name if not found in the configuration.
     */
    open func commonNameFor(ingredientName: String) -> String {
        return try! FfiConverterString.lift(try! rustCall {
            uniffi_cooklang_bindings_fn_method_aisleconf_common_name_for(self.uniffiClonePointer(),
                                                                         FfiConverterString.lower(ingredientName), $0)
        })
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeAisleConf: FfiConverter {
    typealias FfiType = UnsafeMutableRawPointer
    typealias SwiftType = AisleConf

    public static func lift(_ pointer: UnsafeMutableRawPointer) throws -> AisleConf {
        return AisleConf(unsafeFromRawPointer: pointer)
    }

    public static func lower(_ value: AisleConf) -> UnsafeMutableRawPointer {
        return value.uniffiClonePointer()
    }

    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> AisleConf {
        let v: UInt64 = try readInt(&buf)
        // The Rust code won't compile if a pointer won't fit in a UInt64.
        // We have to go via `UInt` because that's the thing that's the size of a pointer.
        let ptr = UnsafeMutableRawPointer(bitPattern: UInt(truncatingIfNeeded: v))
        if ptr == nil {
            throw UniffiInternalError.unexpectedNullPointer
        }
        return try lift(ptr!)
    }

    public static func write(_ value: AisleConf, into buf: inout [UInt8]) {
        // This fiddling is because `Int` is the thing that's the same size as a pointer.
        // The Rust code won't compile if a pointer won't fit in a `UInt64`.
        writeInt(&buf, UInt64(bitPattern: Int64(Int(bitPattern: lower(value)))))
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeAisleConf_lift(_ pointer: UnsafeMutableRawPointer) throws -> AisleConf {
    return try FfiConverterTypeAisleConf.lift(pointer)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeAisleConf_lower(_ value: AisleConf) -> UnsafeMutableRawPointer {
    return FfiConverterTypeAisleConf.lower(value)
}

/**
 * A parsed Cooklang recipe containing all recipe components
 */
public protocol CooklangRecipeProtocol: AnyObject {
    /**
     * Returns all cookware used in the recipe
     */
    func cookware() -> [Cookware]

    /**
     * Returns all ingredients used in the recipe
     */
    func ingredients() -> [Ingredient]

    /**
     * Returns all sections in the recipe
     */
    func sections() -> [Section]

    /**
     * Returns all timers in the recipe
     */
    func timers() -> [Timer]
}

/**
 * A parsed Cooklang recipe containing all recipe components
 */
open class CooklangRecipe:
    CooklangRecipeProtocol
{
    fileprivate let pointer: UnsafeMutableRawPointer!

    // Used to instantiate a [FFIObject] without an actual pointer, for fakes in tests, mostly.
    #if swift(>=5.8)
        @_documentation(visibility: private)
    #endif
    public struct NoPointer {
        public init() {}
    }

    // TODO: We'd like this to be `private` but for Swifty reasons,
    // we can't implement `FfiConverter` without making this `required` and we can't
    // make it `required` without making it `public`.
    public required init(unsafeFromRawPointer pointer: UnsafeMutableRawPointer) {
        self.pointer = pointer
    }

    // This constructor can be used to instantiate a fake object.
    // - Parameter noPointer: Placeholder value so we can have a constructor separate from the default empty one that may be implemented for classes extending [FFIObject].
    //
    // - Warning:
    //     Any object instantiated with this constructor cannot be passed to an actual Rust-backed object. Since there isn't a backing [Pointer] the FFI lower functions will crash.
    #if swift(>=5.8)
        @_documentation(visibility: private)
    #endif
    public init(noPointer _: NoPointer) {
        pointer = nil
    }

    #if swift(>=5.8)
        @_documentation(visibility: private)
    #endif
    public func uniffiClonePointer() -> UnsafeMutableRawPointer {
        return try! rustCall { uniffi_cooklang_bindings_fn_clone_cooklangrecipe(self.pointer, $0) }
    }

    // No primary constructor declared for this class.

    deinit {
        guard let pointer = pointer else {
            return
        }

        try! rustCall { uniffi_cooklang_bindings_fn_free_cooklangrecipe(pointer, $0) }
    }

    /**
     * Returns all cookware used in the recipe
     */
    open func cookware() -> [Cookware] {
        return try! FfiConverterSequenceTypeCookware.lift(try! rustCall {
            uniffi_cooklang_bindings_fn_method_cooklangrecipe_cookware(self.uniffiClonePointer(), $0)
        })
    }

    /**
     * Returns all ingredients used in the recipe
     */
    open func ingredients() -> [Ingredient] {
        return try! FfiConverterSequenceTypeIngredient.lift(try! rustCall {
            uniffi_cooklang_bindings_fn_method_cooklangrecipe_ingredients(self.uniffiClonePointer(), $0)
        })
    }

    /**
     * Returns all sections in the recipe
     */
    open func sections() -> [Section] {
        return try! FfiConverterSequenceTypeSection.lift(try! rustCall {
            uniffi_cooklang_bindings_fn_method_cooklangrecipe_sections(self.uniffiClonePointer(), $0)
        })
    }

    /**
     * Returns all timers in the recipe
     */
    open func timers() -> [Timer] {
        return try! FfiConverterSequenceTypeTimer.lift(try! rustCall {
            uniffi_cooklang_bindings_fn_method_cooklangrecipe_timers(self.uniffiClonePointer(), $0)
        })
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeCooklangRecipe: FfiConverter {
    typealias FfiType = UnsafeMutableRawPointer
    typealias SwiftType = CooklangRecipe

    public static func lift(_ pointer: UnsafeMutableRawPointer) throws -> CooklangRecipe {
        return CooklangRecipe(unsafeFromRawPointer: pointer)
    }

    public static func lower(_ value: CooklangRecipe) -> UnsafeMutableRawPointer {
        return value.uniffiClonePointer()
    }

    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> CooklangRecipe {
        let v: UInt64 = try readInt(&buf)
        // The Rust code won't compile if a pointer won't fit in a UInt64.
        // We have to go via `UInt` because that's the thing that's the size of a pointer.
        let ptr = UnsafeMutableRawPointer(bitPattern: UInt(truncatingIfNeeded: v))
        if ptr == nil {
            throw UniffiInternalError.unexpectedNullPointer
        }
        return try lift(ptr!)
    }

    public static func write(_ value: CooklangRecipe, into buf: inout [UInt8]) {
        // This fiddling is because `Int` is the thing that's the same size as a pointer.
        // The Rust code won't compile if a pointer won't fit in a `UInt64`.
        writeInt(&buf, UInt64(bitPattern: Int64(Int(bitPattern: lower(value)))))
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeCooklangRecipe_lift(_ pointer: UnsafeMutableRawPointer) throws -> CooklangRecipe {
    return try FfiConverterTypeCooklangRecipe.lift(pointer)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeCooklangRecipe_lower(_ value: CooklangRecipe) -> UnsafeMutableRawPointer {
    return FfiConverterTypeCooklangRecipe.lower(value)
}

/**
 * A shopping aisle category containing related ingredients
 */
public struct AisleCategory {
    public let name: String
    public let ingredients: [AisleIngredient]

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(name: String, ingredients: [AisleIngredient]) {
        self.name = name
        self.ingredients = ingredients
    }
}

extension AisleCategory: Equatable, Hashable {
    public static func == (lhs: AisleCategory, rhs: AisleCategory) -> Bool {
        if lhs.name != rhs.name {
            return false
        }
        if lhs.ingredients != rhs.ingredients {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(name)
        hasher.combine(ingredients)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeAisleCategory: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> AisleCategory {
        return
            try AisleCategory(
                name: FfiConverterString.read(from: &buf),
                ingredients: FfiConverterSequenceTypeAisleIngredient.read(from: &buf)
            )
    }

    public static func write(_ value: AisleCategory, into buf: inout [UInt8]) {
        FfiConverterString.write(value.name, into: &buf)
        FfiConverterSequenceTypeAisleIngredient.write(value.ingredients, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeAisleCategory_lift(_ buf: RustBuffer) throws -> AisleCategory {
    return try FfiConverterTypeAisleCategory.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeAisleCategory_lower(_ value: AisleCategory) -> RustBuffer {
    return FfiConverterTypeAisleCategory.lower(value)
}

/**
 * An ingredient with its name and aliases for aisle categorization
 */
public struct AisleIngredient {
    public let name: String
    public let aliases: [String]

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(name: String, aliases: [String]) {
        self.name = name
        self.aliases = aliases
    }
}

extension AisleIngredient: Equatable, Hashable {
    public static func == (lhs: AisleIngredient, rhs: AisleIngredient) -> Bool {
        if lhs.name != rhs.name {
            return false
        }
        if lhs.aliases != rhs.aliases {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(name)
        hasher.combine(aliases)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeAisleIngredient: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> AisleIngredient {
        return
            try AisleIngredient(
                name: FfiConverterString.read(from: &buf),
                aliases: FfiConverterSequenceString.read(from: &buf)
            )
    }

    public static func write(_ value: AisleIngredient, into buf: inout [UInt8]) {
        FfiConverterString.write(value.name, into: &buf)
        FfiConverterSequenceString.write(value.aliases, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeAisleIngredient_lift(_ buf: RustBuffer) throws -> AisleIngredient {
    return try FfiConverterTypeAisleIngredient.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeAisleIngredient_lower(_ value: AisleIngredient) -> RustBuffer {
    return FfiConverterTypeAisleIngredient.lower(value)
}

/**
 * Represents a quantity with optional units
 */
public struct Amount {
    public let quantity: Value
    public let units: String?

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(quantity: Value, units: String?) {
        self.quantity = quantity
        self.units = units
    }
}

extension Amount: Equatable, Hashable {
    public static func == (lhs: Amount, rhs: Amount) -> Bool {
        if lhs.quantity != rhs.quantity {
            return false
        }
        if lhs.units != rhs.units {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(quantity)
        hasher.combine(units)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeAmount: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Amount {
        return
            try Amount(
                quantity: FfiConverterTypeValue.read(from: &buf),
                units: FfiConverterOptionString.read(from: &buf)
            )
    }

    public static func write(_ value: Amount, into buf: inout [UInt8]) {
        FfiConverterTypeValue.write(value.quantity, into: &buf)
        FfiConverterOptionString.write(value.units, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeAmount_lift(_ buf: RustBuffer) throws -> Amount {
    return try FfiConverterTypeAmount.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeAmount_lower(_ value: Amount) -> RustBuffer {
    return FfiConverterTypeAmount.lower(value)
}

/**
 * A text note within the recipe
 */
public struct BlockNote {
    public let text: String

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(text: String) {
        self.text = text
    }
}

extension BlockNote: Equatable, Hashable {
    public static func == (lhs: BlockNote, rhs: BlockNote) -> Bool {
        if lhs.text != rhs.text {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(text)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeBlockNote: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> BlockNote {
        return
            try BlockNote(
                text: FfiConverterString.read(from: &buf)
            )
    }

    public static func write(_ value: BlockNote, into buf: inout [UInt8]) {
        FfiConverterString.write(value.text, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeBlockNote_lift(_ buf: RustBuffer) throws -> BlockNote {
    return try FfiConverterTypeBlockNote.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeBlockNote_lower(_ value: BlockNote) -> RustBuffer {
    return FfiConverterTypeBlockNote.lower(value)
}

/**
 * Represents a piece of cookware used in the recipe
 */
public struct Cookware {
    public let name: String
    public let amount: Amount?

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(name: String, amount: Amount?) {
        self.name = name
        self.amount = amount
    }
}

extension Cookware: Equatable, Hashable {
    public static func == (lhs: Cookware, rhs: Cookware) -> Bool {
        if lhs.name != rhs.name {
            return false
        }
        if lhs.amount != rhs.amount {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(name)
        hasher.combine(amount)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeCookware: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Cookware {
        return
            try Cookware(
                name: FfiConverterString.read(from: &buf),
                amount: FfiConverterOptionTypeAmount.read(from: &buf)
            )
    }

    public static func write(_ value: Cookware, into buf: inout [UInt8]) {
        FfiConverterString.write(value.name, into: &buf)
        FfiConverterOptionTypeAmount.write(value.amount, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeCookware_lift(_ buf: RustBuffer) throws -> Cookware {
    return try FfiConverterTypeCookware.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeCookware_lower(_ value: Cookware) -> RustBuffer {
    return FfiConverterTypeCookware.lower(value)
}

/**
 * Key for grouping quantities by unit and type
 */
public struct GroupedQuantityKey {
    public let name: String
    public let unitType: QuantityType

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(name: String, unitType: QuantityType) {
        self.name = name
        self.unitType = unitType
    }
}

extension GroupedQuantityKey: Equatable, Hashable {
    public static func == (lhs: GroupedQuantityKey, rhs: GroupedQuantityKey) -> Bool {
        if lhs.name != rhs.name {
            return false
        }
        if lhs.unitType != rhs.unitType {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(name)
        hasher.combine(unitType)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeGroupedQuantityKey: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> GroupedQuantityKey {
        return
            try GroupedQuantityKey(
                name: FfiConverterString.read(from: &buf),
                unitType: FfiConverterTypeQuantityType.read(from: &buf)
            )
    }

    public static func write(_ value: GroupedQuantityKey, into buf: inout [UInt8]) {
        FfiConverterString.write(value.name, into: &buf)
        FfiConverterTypeQuantityType.write(value.unitType, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeGroupedQuantityKey_lift(_ buf: RustBuffer) throws -> GroupedQuantityKey {
    return try FfiConverterTypeGroupedQuantityKey.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeGroupedQuantityKey_lower(_ value: GroupedQuantityKey) -> RustBuffer {
    return FfiConverterTypeGroupedQuantityKey.lower(value)
}

/**
 * Represents an ingredient in the recipe
 */
public struct Ingredient {
    public let name: String
    public let amount: Amount?
    public let descriptor: String?
    /**
     * Reference to another recipe file, if this ingredient is a recipe reference
     */
    public let reference: RecipeReference?

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(name: String, amount: Amount?, descriptor: String?,
                /* 
                    * Reference to another recipe file, if this ingredient is a recipe reference
                    */ reference: RecipeReference?)
    {
        self.name = name
        self.amount = amount
        self.descriptor = descriptor
        self.reference = reference
    }
}

extension Ingredient: Equatable, Hashable {
    public static func == (lhs: Ingredient, rhs: Ingredient) -> Bool {
        if lhs.name != rhs.name {
            return false
        }
        if lhs.amount != rhs.amount {
            return false
        }
        if lhs.descriptor != rhs.descriptor {
            return false
        }
        if lhs.reference != rhs.reference {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(name)
        hasher.combine(amount)
        hasher.combine(descriptor)
        hasher.combine(reference)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeIngredient: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Ingredient {
        return
            try Ingredient(
                name: FfiConverterString.read(from: &buf),
                amount: FfiConverterOptionTypeAmount.read(from: &buf),
                descriptor: FfiConverterOptionString.read(from: &buf),
                reference: FfiConverterOptionTypeRecipeReference.read(from: &buf)
            )
    }

    public static func write(_ value: Ingredient, into buf: inout [UInt8]) {
        FfiConverterString.write(value.name, into: &buf)
        FfiConverterOptionTypeAmount.write(value.amount, into: &buf)
        FfiConverterOptionString.write(value.descriptor, into: &buf)
        FfiConverterOptionTypeRecipeReference.write(value.reference, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeIngredient_lift(_ buf: RustBuffer) throws -> Ingredient {
    return try FfiConverterTypeIngredient.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeIngredient_lower(_ value: Ingredient) -> RustBuffer {
    return FfiConverterTypeIngredient.lower(value)
}

/**
 * A name with an optional URL (used for author/source)
 */
public struct NameAndUrl {
    public let name: String?
    public let url: String?

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(name: String?, url: String?) {
        self.name = name
        self.url = url
    }
}

extension NameAndUrl: Equatable, Hashable {
    public static func == (lhs: NameAndUrl, rhs: NameAndUrl) -> Bool {
        if lhs.name != rhs.name {
            return false
        }
        if lhs.url != rhs.url {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(name)
        hasher.combine(url)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeNameAndUrl: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> NameAndUrl {
        return
            try NameAndUrl(
                name: FfiConverterOptionString.read(from: &buf),
                url: FfiConverterOptionString.read(from: &buf)
            )
    }

    public static func write(_ value: NameAndUrl, into buf: inout [UInt8]) {
        FfiConverterOptionString.write(value.name, into: &buf)
        FfiConverterOptionString.write(value.url, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeNameAndUrl_lift(_ buf: RustBuffer) throws -> NameAndUrl {
    return try FfiConverterTypeNameAndUrl.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeNameAndUrl_lower(_ value: NameAndUrl) -> RustBuffer {
    return FfiConverterTypeNameAndUrl.lower(value)
}

/**
 * Represents a reference to another recipe file
 */
public struct RecipeReference {
    /**
     * The recipe file name (without directory path)
     */
    public let name: String
    /**
     * Directory path components (e.g., [".", "pasta"] for "./pasta/recipe")
     */
    public let components: [String]

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(
        /* 
         * The recipe file name (without directory path)
         */ name: String,
        /* 
            * Directory path components (e.g., [".", "pasta"] for "./pasta/recipe")
            */ components: [String]
    ) {
        self.name = name
        self.components = components
    }
}

extension RecipeReference: Equatable, Hashable {
    public static func == (lhs: RecipeReference, rhs: RecipeReference) -> Bool {
        if lhs.name != rhs.name {
            return false
        }
        if lhs.components != rhs.components {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(name)
        hasher.combine(components)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeRecipeReference: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> RecipeReference {
        return
            try RecipeReference(
                name: FfiConverterString.read(from: &buf),
                components: FfiConverterSequenceString.read(from: &buf)
            )
    }

    public static func write(_ value: RecipeReference, into buf: inout [UInt8]) {
        FfiConverterString.write(value.name, into: &buf)
        FfiConverterSequenceString.write(value.components, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeRecipeReference_lift(_ buf: RustBuffer) throws -> RecipeReference {
    return try FfiConverterTypeRecipeReference.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeRecipeReference_lower(_ value: RecipeReference) -> RustBuffer {
    return FfiConverterTypeRecipeReference.lower(value)
}

/**
 * Represents a distinct section of a recipe, optionally with a title
 */
public struct Section {
    public let title: String?
    public let blocks: [Block]
    public let ingredientRefs: [UInt32]
    public let cookwareRefs: [UInt32]
    public let timerRefs: [UInt32]

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(title: String?, blocks: [Block], ingredientRefs: [UInt32], cookwareRefs: [UInt32], timerRefs: [UInt32]) {
        self.title = title
        self.blocks = blocks
        self.ingredientRefs = ingredientRefs
        self.cookwareRefs = cookwareRefs
        self.timerRefs = timerRefs
    }
}

extension Section: Equatable, Hashable {
    public static func == (lhs: Section, rhs: Section) -> Bool {
        if lhs.title != rhs.title {
            return false
        }
        if lhs.blocks != rhs.blocks {
            return false
        }
        if lhs.ingredientRefs != rhs.ingredientRefs {
            return false
        }
        if lhs.cookwareRefs != rhs.cookwareRefs {
            return false
        }
        if lhs.timerRefs != rhs.timerRefs {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(title)
        hasher.combine(blocks)
        hasher.combine(ingredientRefs)
        hasher.combine(cookwareRefs)
        hasher.combine(timerRefs)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeSection: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Section {
        return
            try Section(
                title: FfiConverterOptionString.read(from: &buf),
                blocks: FfiConverterSequenceTypeBlock.read(from: &buf),
                ingredientRefs: FfiConverterSequenceUInt32.read(from: &buf),
                cookwareRefs: FfiConverterSequenceUInt32.read(from: &buf),
                timerRefs: FfiConverterSequenceUInt32.read(from: &buf)
            )
    }

    public static func write(_ value: Section, into buf: inout [UInt8]) {
        FfiConverterOptionString.write(value.title, into: &buf)
        FfiConverterSequenceTypeBlock.write(value.blocks, into: &buf)
        FfiConverterSequenceUInt32.write(value.ingredientRefs, into: &buf)
        FfiConverterSequenceUInt32.write(value.cookwareRefs, into: &buf)
        FfiConverterSequenceUInt32.write(value.timerRefs, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeSection_lift(_ buf: RustBuffer) throws -> Section {
    return try FfiConverterTypeSection.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeSection_lower(_ value: Section) -> RustBuffer {
    return FfiConverterTypeSection.lower(value)
}

/**
 * Represents a single cooking instruction step
 */
public struct Step {
    public let items: [Item]
    public let ingredientRefs: [UInt32]
    public let cookwareRefs: [UInt32]
    public let timerRefs: [UInt32]

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(items: [Item], ingredientRefs: [UInt32], cookwareRefs: [UInt32], timerRefs: [UInt32]) {
        self.items = items
        self.ingredientRefs = ingredientRefs
        self.cookwareRefs = cookwareRefs
        self.timerRefs = timerRefs
    }
}

extension Step: Equatable, Hashable {
    public static func == (lhs: Step, rhs: Step) -> Bool {
        if lhs.items != rhs.items {
            return false
        }
        if lhs.ingredientRefs != rhs.ingredientRefs {
            return false
        }
        if lhs.cookwareRefs != rhs.cookwareRefs {
            return false
        }
        if lhs.timerRefs != rhs.timerRefs {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(items)
        hasher.combine(ingredientRefs)
        hasher.combine(cookwareRefs)
        hasher.combine(timerRefs)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeStep: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Step {
        return
            try Step(
                items: FfiConverterSequenceTypeItem.read(from: &buf),
                ingredientRefs: FfiConverterSequenceUInt32.read(from: &buf),
                cookwareRefs: FfiConverterSequenceUInt32.read(from: &buf),
                timerRefs: FfiConverterSequenceUInt32.read(from: &buf)
            )
    }

    public static func write(_ value: Step, into buf: inout [UInt8]) {
        FfiConverterSequenceTypeItem.write(value.items, into: &buf)
        FfiConverterSequenceUInt32.write(value.ingredientRefs, into: &buf)
        FfiConverterSequenceUInt32.write(value.cookwareRefs, into: &buf)
        FfiConverterSequenceUInt32.write(value.timerRefs, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeStep_lift(_ buf: RustBuffer) throws -> Step {
    return try FfiConverterTypeStep.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeStep_lower(_ value: Step) -> RustBuffer {
    return FfiConverterTypeStep.lower(value)
}

/**
 * Represents a timer in the recipe
 */
public struct Timer {
    public let name: String?
    public let amount: Amount?

    /// Default memberwise initializers are never public by default, so we
    /// declare one manually.
    public init(name: String?, amount: Amount?) {
        self.name = name
        self.amount = amount
    }
}

extension Timer: Equatable, Hashable {
    public static func == (lhs: Timer, rhs: Timer) -> Bool {
        if lhs.name != rhs.name {
            return false
        }
        if lhs.amount != rhs.amount {
            return false
        }
        return true
    }

    public func hash(into hasher: inout Hasher) {
        hasher.combine(name)
        hasher.combine(amount)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeTimer: FfiConverterRustBuffer {
    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Timer {
        return
            try Timer(
                name: FfiConverterOptionString.read(from: &buf),
                amount: FfiConverterOptionTypeAmount.read(from: &buf)
            )
    }

    public static func write(_ value: Timer, into buf: inout [UInt8]) {
        FfiConverterOptionString.write(value.name, into: &buf)
        FfiConverterOptionTypeAmount.write(value.amount, into: &buf)
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeTimer_lift(_ buf: RustBuffer) throws -> Timer {
    return try FfiConverterTypeTimer.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeTimer_lower(_ value: Timer) -> RustBuffer {
    return FfiConverterTypeTimer.lower(value)
}

// Note that we don't yet support `indirect` for enums.
// See https://github.com/mozilla/uniffi-rs/issues/396 for further discussion.
/* 
 * A block can either be a cooking step or a note
 */

public enum Block {
    case stepBlock(Step)
    case noteBlock(BlockNote)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeBlock: FfiConverterRustBuffer {
    typealias SwiftType = Block

    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Block {
        let variant: Int32 = try readInt(&buf)
        switch variant {
        case 1: return try .stepBlock(FfiConverterTypeStep.read(from: &buf))

        case 2: return try .noteBlock(FfiConverterTypeBlockNote.read(from: &buf))

        default: throw UniffiInternalError.unexpectedEnumCase
        }
    }

    public static func write(_ value: Block, into buf: inout [UInt8]) {
        switch value {
        case let .stepBlock(v1):
            writeInt(&buf, Int32(1))
            FfiConverterTypeStep.write(v1, into: &buf)

        case let .noteBlock(v1):
            writeInt(&buf, Int32(2))
            FfiConverterTypeBlockNote.write(v1, into: &buf)
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeBlock_lift(_ buf: RustBuffer) throws -> Block {
    return try FfiConverterTypeBlock.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeBlock_lower(_ value: Block) -> RustBuffer {
    return FfiConverterTypeBlock.lower(value)
}

extension Block: Equatable, Hashable {}

// Note that we don't yet support `indirect` for enums.
// See https://github.com/mozilla/uniffi-rs/issues/396 for further discussion.
/* 
 * Types of components that can be referenced in a recipe
 */

public enum Component {
    case ingredientComponent(Ingredient)
    case cookwareComponent(Cookware)
    case timerComponent(Timer)
    case textComponent(String)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeComponent: FfiConverterRustBuffer {
    typealias SwiftType = Component

    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Component {
        let variant: Int32 = try readInt(&buf)
        switch variant {
        case 1: return try .ingredientComponent(FfiConverterTypeIngredient.read(from: &buf))

        case 2: return try .cookwareComponent(FfiConverterTypeCookware.read(from: &buf))

        case 3: return try .timerComponent(FfiConverterTypeTimer.read(from: &buf))

        case 4: return try .textComponent(FfiConverterString.read(from: &buf))

        default: throw UniffiInternalError.unexpectedEnumCase
        }
    }

    public static func write(_ value: Component, into buf: inout [UInt8]) {
        switch value {
        case let .ingredientComponent(v1):
            writeInt(&buf, Int32(1))
            FfiConverterTypeIngredient.write(v1, into: &buf)

        case let .cookwareComponent(v1):
            writeInt(&buf, Int32(2))
            FfiConverterTypeCookware.write(v1, into: &buf)

        case let .timerComponent(v1):
            writeInt(&buf, Int32(3))
            FfiConverterTypeTimer.write(v1, into: &buf)

        case let .textComponent(v1):
            writeInt(&buf, Int32(4))
            FfiConverterString.write(v1, into: &buf)
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeComponent_lift(_ buf: RustBuffer) throws -> Component {
    return try FfiConverterTypeComponent.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeComponent_lower(_ value: Component) -> RustBuffer {
    return FfiConverterTypeComponent.lower(value)
}

extension Component: Equatable, Hashable {}

// Note that we don't yet support `indirect` for enums.
// See https://github.com/mozilla/uniffi-rs/issues/396 for further discussion.
/* 
 * Elements that can appear in a recipe step
 */

public enum Item {
    case text(value: String)
    case ingredientRef(index: UInt32)
    case cookwareRef(index: UInt32)
    case timerRef(index: UInt32)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeItem: FfiConverterRustBuffer {
    typealias SwiftType = Item

    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Item {
        let variant: Int32 = try readInt(&buf)
        switch variant {
        case 1: return try .text(value: FfiConverterString.read(from: &buf))

        case 2: return try .ingredientRef(index: FfiConverterUInt32.read(from: &buf))

        case 3: return try .cookwareRef(index: FfiConverterUInt32.read(from: &buf))

        case 4: return try .timerRef(index: FfiConverterUInt32.read(from: &buf))

        default: throw UniffiInternalError.unexpectedEnumCase
        }
    }

    public static func write(_ value: Item, into buf: inout [UInt8]) {
        switch value {
        case let .text(value):
            writeInt(&buf, Int32(1))
            FfiConverterString.write(value, into: &buf)

        case let .ingredientRef(index):
            writeInt(&buf, Int32(2))
            FfiConverterUInt32.write(index, into: &buf)

        case let .cookwareRef(index):
            writeInt(&buf, Int32(3))
            FfiConverterUInt32.write(index, into: &buf)

        case let .timerRef(index):
            writeInt(&buf, Int32(4))
            FfiConverterUInt32.write(index, into: &buf)
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeItem_lift(_ buf: RustBuffer) throws -> Item {
    return try FfiConverterTypeItem.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeItem_lower(_ value: Item) -> RustBuffer {
    return FfiConverterTypeItem.lower(value)
}

extension Item: Equatable, Hashable {}

// Note that we don't yet support `indirect` for enums.
// See https://github.com/mozilla/uniffi-rs/issues/396 for further discussion.
/* 
 * Type of quantity value in a grouped quantity
 */

public enum QuantityType {
    case number
    case range
    case text
    case empty
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeQuantityType: FfiConverterRustBuffer {
    typealias SwiftType = QuantityType

    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> QuantityType {
        let variant: Int32 = try readInt(&buf)
        switch variant {
        case 1: return .number

        case 2: return .range

        case 3: return .text

        case 4: return .empty

        default: throw UniffiInternalError.unexpectedEnumCase
        }
    }

    public static func write(_ value: QuantityType, into buf: inout [UInt8]) {
        switch value {
        case .number:
            writeInt(&buf, Int32(1))

        case .range:
            writeInt(&buf, Int32(2))

        case .text:
            writeInt(&buf, Int32(3))

        case .empty:
            writeInt(&buf, Int32(4))
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeQuantityType_lift(_ buf: RustBuffer) throws -> QuantityType {
    return try FfiConverterTypeQuantityType.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeQuantityType_lower(_ value: QuantityType) -> RustBuffer {
    return FfiConverterTypeQuantityType.lower(value)
}

extension QuantityType: Equatable, Hashable {}

// Note that we don't yet support `indirect` for enums.
// See https://github.com/mozilla/uniffi-rs/issues/396 for further discussion.
/* 
 * Recipe time as either total minutes or separate prep/cook times
 */

public enum RecipeTime {
    case total(minutes: UInt32)
    case composed(prepTime: UInt32?, cookTime: UInt32?)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeRecipeTime: FfiConverterRustBuffer {
    typealias SwiftType = RecipeTime

    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> RecipeTime {
        let variant: Int32 = try readInt(&buf)
        switch variant {
        case 1: return try .total(minutes: FfiConverterUInt32.read(from: &buf))

        case 2: return try .composed(prepTime: FfiConverterOptionUInt32.read(from: &buf), cookTime: FfiConverterOptionUInt32.read(from: &buf))

        default: throw UniffiInternalError.unexpectedEnumCase
        }
    }

    public static func write(_ value: RecipeTime, into buf: inout [UInt8]) {
        switch value {
        case let .total(minutes):
            writeInt(&buf, Int32(1))
            FfiConverterUInt32.write(minutes, into: &buf)

        case let .composed(prepTime, cookTime):
            writeInt(&buf, Int32(2))
            FfiConverterOptionUInt32.write(prepTime, into: &buf)
            FfiConverterOptionUInt32.write(cookTime, into: &buf)
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeRecipeTime_lift(_ buf: RustBuffer) throws -> RecipeTime {
    return try FfiConverterTypeRecipeTime.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeRecipeTime_lower(_ value: RecipeTime) -> RustBuffer {
    return FfiConverterTypeRecipeTime.lower(value)
}

extension RecipeTime: Equatable, Hashable {}

// Note that we don't yet support `indirect` for enums.
// See https://github.com/mozilla/uniffi-rs/issues/396 for further discussion.
/* 
 * Recipe servings as either a number or text description
 */

public enum Servings {
    case number(value: UInt32)
    case text(value: String)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeServings: FfiConverterRustBuffer {
    typealias SwiftType = Servings

    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Servings {
        let variant: Int32 = try readInt(&buf)
        switch variant {
        case 1: return try .number(value: FfiConverterUInt32.read(from: &buf))

        case 2: return try .text(value: FfiConverterString.read(from: &buf))

        default: throw UniffiInternalError.unexpectedEnumCase
        }
    }

    public static func write(_ value: Servings, into buf: inout [UInt8]) {
        switch value {
        case let .number(value):
            writeInt(&buf, Int32(1))
            FfiConverterUInt32.write(value, into: &buf)

        case let .text(value):
            writeInt(&buf, Int32(2))
            FfiConverterString.write(value, into: &buf)
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeServings_lift(_ buf: RustBuffer) throws -> Servings {
    return try FfiConverterTypeServings.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeServings_lower(_ value: Servings) -> RustBuffer {
    return FfiConverterTypeServings.lower(value)
}

extension Servings: Equatable, Hashable {}

// Note that we don't yet support `indirect` for enums.
// See https://github.com/mozilla/uniffi-rs/issues/396 for further discussion.
/* 
 * Standard metadata keys from the Cooklang specification
 */

public enum StdKey {
    case title
    case description
    case tags
    case author
    case source
    case course
    case time
    case prepTime
    case cookTime
    case servings
    case difficulty
    case cuisine
    case diet
    case images
    case locale
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeStdKey: FfiConverterRustBuffer {
    typealias SwiftType = StdKey

    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> StdKey {
        let variant: Int32 = try readInt(&buf)
        switch variant {
        case 1: return .title

        case 2: return .description

        case 3: return .tags

        case 4: return .author

        case 5: return .source

        case 6: return .course

        case 7: return .time

        case 8: return .prepTime

        case 9: return .cookTime

        case 10: return .servings

        case 11: return .difficulty

        case 12: return .cuisine

        case 13: return .diet

        case 14: return .images

        case 15: return .locale

        default: throw UniffiInternalError.unexpectedEnumCase
        }
    }

    public static func write(_ value: StdKey, into buf: inout [UInt8]) {
        switch value {
        case .title:
            writeInt(&buf, Int32(1))

        case .description:
            writeInt(&buf, Int32(2))

        case .tags:
            writeInt(&buf, Int32(3))

        case .author:
            writeInt(&buf, Int32(4))

        case .source:
            writeInt(&buf, Int32(5))

        case .course:
            writeInt(&buf, Int32(6))

        case .time:
            writeInt(&buf, Int32(7))

        case .prepTime:
            writeInt(&buf, Int32(8))

        case .cookTime:
            writeInt(&buf, Int32(9))

        case .servings:
            writeInt(&buf, Int32(10))

        case .difficulty:
            writeInt(&buf, Int32(11))

        case .cuisine:
            writeInt(&buf, Int32(12))

        case .diet:
            writeInt(&buf, Int32(13))

        case .images:
            writeInt(&buf, Int32(14))

        case .locale:
            writeInt(&buf, Int32(15))
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeStdKey_lift(_ buf: RustBuffer) throws -> StdKey {
    return try FfiConverterTypeStdKey.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeStdKey_lower(_ value: StdKey) -> RustBuffer {
    return FfiConverterTypeStdKey.lower(value)
}

extension StdKey: Equatable, Hashable {}

// Note that we don't yet support `indirect` for enums.
// See https://github.com/mozilla/uniffi-rs/issues/396 for further discussion.
/* 
 * Types of values that can represent quantities
 */

public enum Value {
    case number(value: Double)
    case range(start: Double, end: Double)
    case text(value: String)
    case empty
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public struct FfiConverterTypeValue: FfiConverterRustBuffer {
    typealias SwiftType = Value

    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> Value {
        let variant: Int32 = try readInt(&buf)
        switch variant {
        case 1: return try .number(value: FfiConverterDouble.read(from: &buf))

        case 2: return try .range(start: FfiConverterDouble.read(from: &buf), end: FfiConverterDouble.read(from: &buf))

        case 3: return try .text(value: FfiConverterString.read(from: &buf))

        case 4: return .empty

        default: throw UniffiInternalError.unexpectedEnumCase
        }
    }

    public static func write(_ value: Value, into buf: inout [UInt8]) {
        switch value {
        case let .number(value):
            writeInt(&buf, Int32(1))
            FfiConverterDouble.write(value, into: &buf)

        case let .range(start, end):
            writeInt(&buf, Int32(2))
            FfiConverterDouble.write(start, into: &buf)
            FfiConverterDouble.write(end, into: &buf)

        case let .text(value):
            writeInt(&buf, Int32(3))
            FfiConverterString.write(value, into: &buf)

        case .empty:
            writeInt(&buf, Int32(4))
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeValue_lift(_ buf: RustBuffer) throws -> Value {
    return try FfiConverterTypeValue.lift(buf)
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
public func FfiConverterTypeValue_lower(_ value: Value) -> RustBuffer {
    return FfiConverterTypeValue.lower(value)
}

extension Value: Equatable, Hashable {}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterOptionUInt32: FfiConverterRustBuffer {
    typealias SwiftType = UInt32?

    static func write(_ value: SwiftType, into buf: inout [UInt8]) {
        guard let value = value else {
            writeInt(&buf, Int8(0))
            return
        }
        writeInt(&buf, Int8(1))
        FfiConverterUInt32.write(value, into: &buf)
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> SwiftType {
        switch try readInt(&buf) as Int8 {
        case 0: return nil
        case 1: return try FfiConverterUInt32.read(from: &buf)
        default: throw UniffiInternalError.unexpectedOptionalTag
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterOptionString: FfiConverterRustBuffer {
    typealias SwiftType = String?

    static func write(_ value: SwiftType, into buf: inout [UInt8]) {
        guard let value = value else {
            writeInt(&buf, Int8(0))
            return
        }
        writeInt(&buf, Int8(1))
        FfiConverterString.write(value, into: &buf)
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> SwiftType {
        switch try readInt(&buf) as Int8 {
        case 0: return nil
        case 1: return try FfiConverterString.read(from: &buf)
        default: throw UniffiInternalError.unexpectedOptionalTag
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterOptionTypeAmount: FfiConverterRustBuffer {
    typealias SwiftType = Amount?

    static func write(_ value: SwiftType, into buf: inout [UInt8]) {
        guard let value = value else {
            writeInt(&buf, Int8(0))
            return
        }
        writeInt(&buf, Int8(1))
        FfiConverterTypeAmount.write(value, into: &buf)
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> SwiftType {
        switch try readInt(&buf) as Int8 {
        case 0: return nil
        case 1: return try FfiConverterTypeAmount.read(from: &buf)
        default: throw UniffiInternalError.unexpectedOptionalTag
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterOptionTypeNameAndUrl: FfiConverterRustBuffer {
    typealias SwiftType = NameAndUrl?

    static func write(_ value: SwiftType, into buf: inout [UInt8]) {
        guard let value = value else {
            writeInt(&buf, Int8(0))
            return
        }
        writeInt(&buf, Int8(1))
        FfiConverterTypeNameAndUrl.write(value, into: &buf)
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> SwiftType {
        switch try readInt(&buf) as Int8 {
        case 0: return nil
        case 1: return try FfiConverterTypeNameAndUrl.read(from: &buf)
        default: throw UniffiInternalError.unexpectedOptionalTag
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterOptionTypeRecipeReference: FfiConverterRustBuffer {
    typealias SwiftType = RecipeReference?

    static func write(_ value: SwiftType, into buf: inout [UInt8]) {
        guard let value = value else {
            writeInt(&buf, Int8(0))
            return
        }
        writeInt(&buf, Int8(1))
        FfiConverterTypeRecipeReference.write(value, into: &buf)
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> SwiftType {
        switch try readInt(&buf) as Int8 {
        case 0: return nil
        case 1: return try FfiConverterTypeRecipeReference.read(from: &buf)
        default: throw UniffiInternalError.unexpectedOptionalTag
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterOptionTypeRecipeTime: FfiConverterRustBuffer {
    typealias SwiftType = RecipeTime?

    static func write(_ value: SwiftType, into buf: inout [UInt8]) {
        guard let value = value else {
            writeInt(&buf, Int8(0))
            return
        }
        writeInt(&buf, Int8(1))
        FfiConverterTypeRecipeTime.write(value, into: &buf)
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> SwiftType {
        switch try readInt(&buf) as Int8 {
        case 0: return nil
        case 1: return try FfiConverterTypeRecipeTime.read(from: &buf)
        default: throw UniffiInternalError.unexpectedOptionalTag
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterOptionTypeServings: FfiConverterRustBuffer {
    typealias SwiftType = Servings?

    static func write(_ value: SwiftType, into buf: inout [UInt8]) {
        guard let value = value else {
            writeInt(&buf, Int8(0))
            return
        }
        writeInt(&buf, Int8(1))
        FfiConverterTypeServings.write(value, into: &buf)
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> SwiftType {
        switch try readInt(&buf) as Int8 {
        case 0: return nil
        case 1: return try FfiConverterTypeServings.read(from: &buf)
        default: throw UniffiInternalError.unexpectedOptionalTag
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterOptionSequenceString: FfiConverterRustBuffer {
    typealias SwiftType = [String]?

    static func write(_ value: SwiftType, into buf: inout [UInt8]) {
        guard let value = value else {
            writeInt(&buf, Int8(0))
            return
        }
        writeInt(&buf, Int8(1))
        FfiConverterSequenceString.write(value, into: &buf)
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> SwiftType {
        switch try readInt(&buf) as Int8 {
        case 0: return nil
        case 1: return try FfiConverterSequenceString.read(from: &buf)
        default: throw UniffiInternalError.unexpectedOptionalTag
        }
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterSequenceUInt32: FfiConverterRustBuffer {
    typealias SwiftType = [UInt32]

    static func write(_ value: [UInt32], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for item in value {
            FfiConverterUInt32.write(item, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [UInt32] {
        let len: Int32 = try readInt(&buf)
        var seq = [UInt32]()
        seq.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            try seq.append(FfiConverterUInt32.read(from: &buf))
        }
        return seq
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterSequenceString: FfiConverterRustBuffer {
    typealias SwiftType = [String]

    static func write(_ value: [String], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for item in value {
            FfiConverterString.write(item, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [String] {
        let len: Int32 = try readInt(&buf)
        var seq = [String]()
        seq.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            try seq.append(FfiConverterString.read(from: &buf))
        }
        return seq
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterSequenceTypeAisleCategory: FfiConverterRustBuffer {
    typealias SwiftType = [AisleCategory]

    static func write(_ value: [AisleCategory], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for item in value {
            FfiConverterTypeAisleCategory.write(item, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [AisleCategory] {
        let len: Int32 = try readInt(&buf)
        var seq = [AisleCategory]()
        seq.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            try seq.append(FfiConverterTypeAisleCategory.read(from: &buf))
        }
        return seq
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterSequenceTypeAisleIngredient: FfiConverterRustBuffer {
    typealias SwiftType = [AisleIngredient]

    static func write(_ value: [AisleIngredient], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for item in value {
            FfiConverterTypeAisleIngredient.write(item, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [AisleIngredient] {
        let len: Int32 = try readInt(&buf)
        var seq = [AisleIngredient]()
        seq.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            try seq.append(FfiConverterTypeAisleIngredient.read(from: &buf))
        }
        return seq
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterSequenceTypeCookware: FfiConverterRustBuffer {
    typealias SwiftType = [Cookware]

    static func write(_ value: [Cookware], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for item in value {
            FfiConverterTypeCookware.write(item, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [Cookware] {
        let len: Int32 = try readInt(&buf)
        var seq = [Cookware]()
        seq.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            try seq.append(FfiConverterTypeCookware.read(from: &buf))
        }
        return seq
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterSequenceTypeIngredient: FfiConverterRustBuffer {
    typealias SwiftType = [Ingredient]

    static func write(_ value: [Ingredient], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for item in value {
            FfiConverterTypeIngredient.write(item, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [Ingredient] {
        let len: Int32 = try readInt(&buf)
        var seq = [Ingredient]()
        seq.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            try seq.append(FfiConverterTypeIngredient.read(from: &buf))
        }
        return seq
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterSequenceTypeSection: FfiConverterRustBuffer {
    typealias SwiftType = [Section]

    static func write(_ value: [Section], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for item in value {
            FfiConverterTypeSection.write(item, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [Section] {
        let len: Int32 = try readInt(&buf)
        var seq = [Section]()
        seq.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            try seq.append(FfiConverterTypeSection.read(from: &buf))
        }
        return seq
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterSequenceTypeTimer: FfiConverterRustBuffer {
    typealias SwiftType = [Timer]

    static func write(_ value: [Timer], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for item in value {
            FfiConverterTypeTimer.write(item, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [Timer] {
        let len: Int32 = try readInt(&buf)
        var seq = [Timer]()
        seq.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            try seq.append(FfiConverterTypeTimer.read(from: &buf))
        }
        return seq
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterSequenceTypeBlock: FfiConverterRustBuffer {
    typealias SwiftType = [Block]

    static func write(_ value: [Block], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for item in value {
            FfiConverterTypeBlock.write(item, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [Block] {
        let len: Int32 = try readInt(&buf)
        var seq = [Block]()
        seq.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            try seq.append(FfiConverterTypeBlock.read(from: &buf))
        }
        return seq
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterSequenceTypeItem: FfiConverterRustBuffer {
    typealias SwiftType = [Item]

    static func write(_ value: [Item], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for item in value {
            FfiConverterTypeItem.write(item, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [Item] {
        let len: Int32 = try readInt(&buf)
        var seq = [Item]()
        seq.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            try seq.append(FfiConverterTypeItem.read(from: &buf))
        }
        return seq
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterDictionaryStringDictionaryTypeGroupedQuantityKeyTypeValue: FfiConverterRustBuffer {
    static func write(_ value: [String: [GroupedQuantityKey: Value]], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for (key, value) in value {
            FfiConverterString.write(key, into: &buf)
            FfiConverterDictionaryTypeGroupedQuantityKeyTypeValue.write(value, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [String: [GroupedQuantityKey: Value]] {
        let len: Int32 = try readInt(&buf)
        var dict = [String: [GroupedQuantityKey: Value]]()
        dict.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            let key = try FfiConverterString.read(from: &buf)
            let value = try FfiConverterDictionaryTypeGroupedQuantityKeyTypeValue.read(from: &buf)
            dict[key] = value
        }
        return dict
    }
}

#if swift(>=5.8)
    @_documentation(visibility: private)
#endif
private struct FfiConverterDictionaryTypeGroupedQuantityKeyTypeValue: FfiConverterRustBuffer {
    static func write(_ value: [GroupedQuantityKey: Value], into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for (key, value) in value {
            FfiConverterTypeGroupedQuantityKey.write(key, into: &buf)
            FfiConverterTypeValue.write(value, into: &buf)
        }
    }

    static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> [GroupedQuantityKey: Value] {
        let len: Int32 = try readInt(&buf)
        var dict = [GroupedQuantityKey: Value]()
        dict.reserveCapacity(Int(len))
        for _ in 0 ..< len {
            let key = try FfiConverterTypeGroupedQuantityKey.read(from: &buf)
            let value = try FfiConverterTypeValue.read(from: &buf)
            dict[key] = value
        }
        return dict
    }
}

/**
 * Combines a list of ingredients, grouping by name and summing quantities
 *
 * # Arguments
 * * `ingredients` - List of ingredients to combine
 *
 * # Returns
 * A map of ingredient names to their combined quantities
 */
public func combineIngredients(ingredients: [Ingredient]) -> [String: [GroupedQuantityKey: Value]] {
    return try! FfiConverterDictionaryStringDictionaryTypeGroupedQuantityKeyTypeValue.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_combine_ingredients(
            FfiConverterSequenceTypeIngredient.lower(ingredients), $0
        )
    })
}

/**
 * Combines selected ingredients by their indices
 *
 * # Arguments
 * * `ingredients` - Full list of ingredients
 * * `indices` - Indices of ingredients to combine
 *
 * # Returns
 * A map of ingredient names to their combined quantities
 */
public func combineIngredientsSelected(ingredients: [Ingredient], indices: [UInt32]) -> [String: [GroupedQuantityKey: Value]] {
    return try! FfiConverterDictionaryStringDictionaryTypeGroupedQuantityKeyTypeValue.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_combine_ingredients_selected(
            FfiConverterSequenceTypeIngredient.lower(ingredients),
            FfiConverterSequenceUInt32.lower(indices), $0
        )
    })
}

/**
 * Dereferences a component reference to get the actual component
 *
 * # Arguments
 * * `recipe` - The recipe containing the components
 * * `item` - The item reference (IngredientRef, CookwareRef, TimerRef, or Text)
 *
 * # Returns
 * The actual component (Ingredient, Cookware, Timer, or Text)
 */
public func derefComponent(recipe: CooklangRecipe, item: Item) -> Component {
    return try! FfiConverterTypeComponent.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_deref_component(
            FfiConverterTypeCooklangRecipe.lower(recipe),
            FfiConverterTypeItem.lower(item), $0
        )
    })
}

/**
 * Gets cookware by its index
 *
 * # Arguments
 * * `recipe` - The recipe containing the cookware
 * * `index` - The index of the cookware
 *
 * # Returns
 * The cookware at the specified index
 */
public func derefCookware(recipe: CooklangRecipe, index: UInt32) -> Cookware {
    return try! FfiConverterTypeCookware.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_deref_cookware(
            FfiConverterTypeCooklangRecipe.lower(recipe),
            FfiConverterUInt32.lower(index), $0
        )
    })
}

/**
 * Gets an ingredient by its index
 *
 * # Arguments
 * * `recipe` - The recipe containing the ingredients
 * * `index` - The index of the ingredient
 *
 * # Returns
 * The ingredient at the specified index
 */
public func derefIngredient(recipe: CooklangRecipe, index: UInt32) -> Ingredient {
    return try! FfiConverterTypeIngredient.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_deref_ingredient(
            FfiConverterTypeCooklangRecipe.lower(recipe),
            FfiConverterUInt32.lower(index), $0
        )
    })
}

/**
 * Gets a timer by its index
 *
 * # Arguments
 * * `recipe` - The recipe containing the timers
 * * `index` - The index of the timer
 *
 * # Returns
 * The timer at the specified index
 */
public func derefTimer(recipe: CooklangRecipe, index: UInt32) -> Timer {
    return try! FfiConverterTypeTimer.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_deref_timer(
            FfiConverterTypeCooklangRecipe.lower(recipe),
            FfiConverterUInt32.lower(index), $0
        )
    })
}

/**
 * Formats an Amount to a display string with units
 *
 * Combines formatted quantity with units (e.g., "2/3 cups", "1 1/2 tsp")
 *
 * # Arguments
 * * `amount` - The amount to format
 *
 * # Returns
 * Formatted string with quantity and units
 */
public func formatAmount(amount: Amount) -> String {
    return try! FfiConverterString.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_format_amount(
            FfiConverterTypeAmount.lower(amount), $0
        )
    })
}

/**
 * Formats a Value to a display string with proper fraction handling
 *
 * Converts decimals to fractions where appropriate (e.g., 0.666667 -> "2/3")
 * Handles floating point precision issues from scaling (e.g., 0.89999999 -> "0.9")
 *
 * # Arguments
 * * `value` - The value to format
 *
 * # Returns
 * Formatted string or None for Empty values
 */
public func formatValue(value: Value) -> String? {
    return try! FfiConverterOptionString.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_format_value(
            FfiConverterTypeValue.lower(value), $0
        )
    })
}

/**
 * Gets the author information from recipe metadata
 *
 * # Arguments
 * * `recipe` - The recipe to get author from
 *
 * # Returns
 * Author name and optional URL
 */
public func metadataAuthor(recipe: CooklangRecipe) -> NameAndUrl? {
    return try! FfiConverterOptionTypeNameAndUrl.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_metadata_author(
            FfiConverterTypeCooklangRecipe.lower(recipe), $0
        )
    })
}

/**
 * Gets all non-standard (custom) metadata keys
 *
 * # Arguments
 * * `recipe` - The recipe containing metadata
 *
 * # Returns
 * List of custom metadata keys that are not part of the Cooklang standard
 */
public func metadataCustomKeys(recipe: CooklangRecipe) -> [String] {
    return try! FfiConverterSequenceString.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_metadata_custom_keys(
            FfiConverterTypeCooklangRecipe.lower(recipe), $0
        )
    })
}

/**
 * Gets the description from recipe metadata
 *
 * # Arguments
 * * `recipe` - The recipe to get the description from
 *
 * # Returns
 * The recipe description if present
 */
public func metadataDescription(recipe: CooklangRecipe) -> String? {
    return try! FfiConverterOptionString.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_metadata_description(
            FfiConverterTypeCooklangRecipe.lower(recipe), $0
        )
    })
}

/**
 * Gets a custom metadata value by key
 *
 * # Arguments
 * * `recipe` - The recipe containing metadata
 * * `key` - The metadata key to retrieve
 *
 * # Returns
 * The metadata value if present
 */
public func metadataGet(recipe: CooklangRecipe, key: String) -> String? {
    return try! FfiConverterOptionString.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_metadata_get(
            FfiConverterTypeCooklangRecipe.lower(recipe),
            FfiConverterString.lower(key), $0
        )
    })
}

/**
 * Gets a standard metadata value using the StdKey enum
 *
 * # Arguments
 * * `recipe` - The recipe containing metadata
 * * `key` - The standard metadata key
 *
 * # Returns
 * The metadata value if present
 */
public func metadataGetStd(recipe: CooklangRecipe, key: StdKey) -> String? {
    return try! FfiConverterOptionString.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_metadata_get_std(
            FfiConverterTypeCooklangRecipe.lower(recipe),
            FfiConverterTypeStdKey.lower(key), $0
        )
    })
}

/**
 * Gets the servings from recipe metadata
 *
 * # Arguments
 * * `recipe` - The recipe to get servings from
 *
 * # Returns
 * Servings as either a number (e.g., 4) or text (e.g., "2-3 portions")
 */
public func metadataServings(recipe: CooklangRecipe) -> Servings? {
    return try! FfiConverterOptionTypeServings.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_metadata_servings(
            FfiConverterTypeCooklangRecipe.lower(recipe), $0
        )
    })
}

/**
 * Gets the source information from recipe metadata
 *
 * # Arguments
 * * `recipe` - The recipe to get source from
 *
 * # Returns
 * Source name and optional URL
 */
public func metadataSource(recipe: CooklangRecipe) -> NameAndUrl? {
    return try! FfiConverterOptionTypeNameAndUrl.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_metadata_source(
            FfiConverterTypeCooklangRecipe.lower(recipe), $0
        )
    })
}

/**
 * Gets tags from recipe metadata
 *
 * # Arguments
 * * `recipe` - The recipe to get tags from
 *
 * # Returns
 * A list of tags if present
 */
public func metadataTags(recipe: CooklangRecipe) -> [String]? {
    return try! FfiConverterOptionSequenceString.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_metadata_tags(
            FfiConverterTypeCooklangRecipe.lower(recipe), $0
        )
    })
}

/**
 * Gets the time information from recipe metadata
 *
 * # Arguments
 * * `recipe` - The recipe to get time from
 *
 * # Returns
 * Total time or separate prep/cook times in minutes
 */
public func metadataTime(recipe: CooklangRecipe) -> RecipeTime? {
    return try! FfiConverterOptionTypeRecipeTime.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_metadata_time(
            FfiConverterTypeCooklangRecipe.lower(recipe), $0
        )
    })
}

/**
 * Gets the title from recipe metadata
 *
 * # Arguments
 * * `recipe` - The recipe to get the title from
 *
 * # Returns
 * The recipe title if present
 */
public func metadataTitle(recipe: CooklangRecipe) -> String? {
    return try! FfiConverterOptionString.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_metadata_title(
            FfiConverterTypeCooklangRecipe.lower(recipe), $0
        )
    })
}

/**
 * Parses an aisle configuration for shopping list organization
 *
 * # Arguments
 * * `input` - The aisle configuration text
 *
 * # Returns
 * Parsed aisle configuration with categories and ingredient mappings
 */
public func parseAisleConfig(input: String) -> AisleConf {
    return try! FfiConverterTypeAisleConf.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_parse_aisle_config(
            FfiConverterString.lower(input), $0
        )
    })
}

/**
 * Parses a Cooklang recipe from text and applies a scaling factor
 *
 * # Arguments
 * * `input` - The raw recipe text in Cooklang format
 * * `scaling_factor` - Factor to scale ingredient quantities (1.0 for no scaling)
 *
 * # Returns
 * A parsed recipe object with metadata, sections, ingredients, cookware and timers
 */
public func parseRecipe(input: String, scalingFactor: Double) -> CooklangRecipe {
    return try! FfiConverterTypeCooklangRecipe.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_parse_recipe(
            FfiConverterString.lower(input),
            FfiConverterDouble.lower(scalingFactor), $0
        )
    })
}

/**
 * Parses a string into a Value
 *
 * Supports fractions (e.g., "1/2" -> 0.5), mixed numbers (e.g., "1 1/2" -> 1.5),
 * ranges (e.g., "1/2 - 3/4" -> Range{0.5, 0.75}), or falls back to text
 *
 * # Arguments
 * * `s` - The string to parse
 *
 * # Returns
 * Parsed Value (Number, Range, or Text)
 */
public func parseValue(s: String) -> Value {
    return try! FfiConverterTypeValue.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_parse_value(
            FfiConverterString.lower(s), $0
        )
    })
}

/**
 * Replaces ingredient names with their common names from aisle configuration
 *
 * # Arguments
 * * `list` - The ingredient list to normalize
 * * `aisle` - The aisle configuration containing common name mappings
 *
 * # Returns
 * A new ingredient list with names replaced by their common names
 */
public func useCommonNames(list: [String: [GroupedQuantityKey: Value]], aisle: AisleConf) -> [String: [GroupedQuantityKey: Value]] {
    return try! FfiConverterDictionaryStringDictionaryTypeGroupedQuantityKeyTypeValue.lift(try! rustCall {
        uniffi_cooklang_bindings_fn_func_use_common_names(
            FfiConverterDictionaryStringDictionaryTypeGroupedQuantityKeyTypeValue.lower(list),
            FfiConverterTypeAisleConf.lower(aisle), $0
        )
    })
}

private enum InitializationResult {
    case ok
    case contractVersionMismatch
    case apiChecksumMismatch
}

/// Use a global variable to perform the versioning checks. Swift ensures that
/// the code inside is only computed once.
private var initializationResult: InitializationResult = {
    // Get the bindings contract version from our ComponentInterface
    let bindings_contract_version = 26
    // Get the scaffolding contract version by calling the into the dylib
    let scaffolding_contract_version = ffi_cooklang_bindings_uniffi_contract_version()
    if bindings_contract_version != scaffolding_contract_version {
        return InitializationResult.contractVersionMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_combine_ingredients() != 36610 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_combine_ingredients_selected() != 40919 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_deref_component() != 34036 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_deref_cookware() != 554 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_deref_ingredient() != 19669 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_deref_timer() != 59309 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_format_amount() != 64895 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_format_value() != 29360 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_metadata_author() != 27104 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_metadata_custom_keys() != 26863 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_metadata_description() != 22848 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_metadata_get() != 30261 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_metadata_get_std() != 65428 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_metadata_servings() != 62006 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_metadata_source() != 51247 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_metadata_tags() != 63258 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_metadata_time() != 27261 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_metadata_title() != 16632 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_parse_aisle_config() != 10549 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_parse_recipe() != 26150 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_parse_value() != 41886 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_func_use_common_names() != 42613 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_method_aisleconf_categories() != 45384 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_method_aisleconf_category_for() != 45672 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_method_aisleconf_common_name_for() != 50251 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_method_cooklangrecipe_cookware() != 42673 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_method_cooklangrecipe_ingredients() != 36256 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_method_cooklangrecipe_sections() != 55375 {
        return InitializationResult.apiChecksumMismatch
    }
    if uniffi_cooklang_bindings_checksum_method_cooklangrecipe_timers() != 63040 {
        return InitializationResult.apiChecksumMismatch
    }

    return InitializationResult.ok
}()

private func uniffiEnsureInitialized() {
    switch initializationResult {
    case .ok:
        break
    case .contractVersionMismatch:
        fatalError("UniFFI contract version mismatch: try cleaning and rebuilding your project")
    case .apiChecksumMismatch:
        fatalError("UniFFI API checksum mismatch: try cleaning and rebuilding your project")
    }
}

// swiftlint:enable all