proef-core 0.5.3

Engine-agnostic core of proef: parsing, binding, lowering, IR, emit, dispatch, World, events, errors
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
pub mod proef_core
pub mod proef_core::analyze
pub struct proef_core::analyze::AnalyzeCtx<'a>
pub proef_core::analyze::AnalyzeCtx::config_vars: &'a alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::analyze::AnalyzeCtx::env: &'a alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::analyze::AnalyzeCtx::kind_to_engine: &'a alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::analyze::AnalyzeCtx::kinds: &'a [proef_core::engine::StepKindSpec]
pub proef_core::analyze::AnalyzeCtx::provider: &'a dyn proef_core::provider::SourceProvider
pub proef_core::analyze::AnalyzeCtx::run_id: &'a str
impl<'a> core::marker::Freeze for proef_core::analyze::AnalyzeCtx<'a>
impl<'a> !core::marker::Send for proef_core::analyze::AnalyzeCtx<'a>
impl<'a> !core::marker::Sync for proef_core::analyze::AnalyzeCtx<'a>
impl<'a> core::marker::Unpin for proef_core::analyze::AnalyzeCtx<'a>
impl<'a> core::marker::UnsafeUnpin for proef_core::analyze::AnalyzeCtx<'a>
impl<'a> !core::panic::unwind_safe::RefUnwindSafe for proef_core::analyze::AnalyzeCtx<'a>
impl<'a> !core::panic::unwind_safe::UnwindSafe for proef_core::analyze::AnalyzeCtx<'a>
pub struct proef_core::analyze::Binding
pub proef_core::analyze::Binding::feature: alloc::string::String
pub proef_core::analyze::Binding::macro_name: alloc::string::String
pub proef_core::analyze::Binding::step_span: proef_core::diag::Span
impl core::clone::Clone for proef_core::analyze::Binding
pub fn proef_core::analyze::Binding::clone(&self) -> proef_core::analyze::Binding
impl core::fmt::Debug for proef_core::analyze::Binding
pub fn proef_core::analyze::Binding::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::analyze::Binding
impl core::marker::Send for proef_core::analyze::Binding
impl core::marker::Sync for proef_core::analyze::Binding
impl core::marker::Unpin for proef_core::analyze::Binding
impl core::marker::UnsafeUnpin for proef_core::analyze::Binding
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::analyze::Binding
impl core::panic::unwind_safe::UnwindSafe for proef_core::analyze::Binding
pub struct proef_core::analyze::MacroRef
pub proef_core::analyze::MacroRef::def_span: core::option::Option<proef_core::diag::Span>
pub proef_core::analyze::MacroRef::match_span: core::option::Option<proef_core::diag::Span>
pub proef_core::analyze::MacroRef::name: alloc::string::String
pub proef_core::analyze::MacroRef::pack: alloc::string::String
pub proef_core::analyze::MacroRef::params: alloc::vec::Vec<alloc::string::String>
pub proef_core::analyze::MacroRef::pattern: core::option::Option<alloc::string::String>
impl core::clone::Clone for proef_core::analyze::MacroRef
pub fn proef_core::analyze::MacroRef::clone(&self) -> proef_core::analyze::MacroRef
impl core::fmt::Debug for proef_core::analyze::MacroRef
pub fn proef_core::analyze::MacroRef::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::analyze::MacroRef
impl core::marker::Send for proef_core::analyze::MacroRef
impl core::marker::Sync for proef_core::analyze::MacroRef
impl core::marker::Unpin for proef_core::analyze::MacroRef
impl core::marker::UnsafeUnpin for proef_core::analyze::MacroRef
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::analyze::MacroRef
impl core::panic::unwind_safe::UnwindSafe for proef_core::analyze::MacroRef
pub struct proef_core::analyze::SuiteAnalysis
pub proef_core::analyze::SuiteAnalysis::bindings: alloc::vec::Vec<proef_core::analyze::Binding>
pub proef_core::analyze::SuiteAnalysis::diagnostics: alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::vec::Vec<proef_core::diag::Diag>>
pub proef_core::analyze::SuiteAnalysis::macros: alloc::vec::Vec<proef_core::analyze::MacroRef>
pub proef_core::analyze::SuiteAnalysis::use_refs: alloc::vec::Vec<proef_core::analyze::UseRef>
impl core::default::Default for proef_core::analyze::SuiteAnalysis
pub fn proef_core::analyze::SuiteAnalysis::default() -> proef_core::analyze::SuiteAnalysis
impl core::fmt::Debug for proef_core::analyze::SuiteAnalysis
pub fn proef_core::analyze::SuiteAnalysis::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::analyze::SuiteAnalysis
impl core::marker::Send for proef_core::analyze::SuiteAnalysis
impl core::marker::Sync for proef_core::analyze::SuiteAnalysis
impl core::marker::Unpin for proef_core::analyze::SuiteAnalysis
impl core::marker::UnsafeUnpin for proef_core::analyze::SuiteAnalysis
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::analyze::SuiteAnalysis
impl core::panic::unwind_safe::UnwindSafe for proef_core::analyze::SuiteAnalysis
pub struct proef_core::analyze::UseRef
pub proef_core::analyze::UseRef::pack: alloc::string::String
pub proef_core::analyze::UseRef::span: proef_core::diag::Span
pub proef_core::analyze::UseRef::target_macro: alloc::string::String
impl core::clone::Clone for proef_core::analyze::UseRef
pub fn proef_core::analyze::UseRef::clone(&self) -> proef_core::analyze::UseRef
impl core::fmt::Debug for proef_core::analyze::UseRef
pub fn proef_core::analyze::UseRef::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::analyze::UseRef
impl core::marker::Send for proef_core::analyze::UseRef
impl core::marker::Sync for proef_core::analyze::UseRef
impl core::marker::Unpin for proef_core::analyze::UseRef
impl core::marker::UnsafeUnpin for proef_core::analyze::UseRef
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::analyze::UseRef
impl core::panic::unwind_safe::UnwindSafe for proef_core::analyze::UseRef
pub fn proef_core::analyze::analyze_suite(&proef_core::analyze::AnalyzeCtx<'_>) -> proef_core::analyze::SuiteAnalysis
pub fn proef_core::analyze::validate_artifact(&proef_core::emit::Artifact, &proef_core::lower::LoweredScenario, &[proef_core::engine::StepKindSpec], &mut alloc::vec::Vec<proef_core::diag::Diag>)
pub mod proef_core::bind
pub struct proef_core::bind::BoundScenario
pub proef_core::bind::BoundScenario::line: usize
pub proef_core::bind::BoundScenario::name: alloc::string::String
pub proef_core::bind::BoundScenario::steps: alloc::vec::Vec<proef_core::bind::BoundStep>
pub proef_core::bind::BoundScenario::tags: alloc::vec::Vec<alloc::string::String>
impl core::clone::Clone for proef_core::bind::BoundScenario
pub fn proef_core::bind::BoundScenario::clone(&self) -> proef_core::bind::BoundScenario
impl core::fmt::Debug for proef_core::bind::BoundScenario
pub fn proef_core::bind::BoundScenario::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::bind::BoundScenario
impl core::marker::Send for proef_core::bind::BoundScenario
impl core::marker::Sync for proef_core::bind::BoundScenario
impl core::marker::Unpin for proef_core::bind::BoundScenario
impl core::marker::UnsafeUnpin for proef_core::bind::BoundScenario
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::bind::BoundScenario
impl core::panic::unwind_safe::UnwindSafe for proef_core::bind::BoundScenario
pub struct proef_core::bind::BoundStep
pub proef_core::bind::BoundStep::args: alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::bind::BoundStep::defn: proef_core::feature::StepDefn
pub proef_core::bind::BoundStep::macro_name: alloc::string::String
impl core::clone::Clone for proef_core::bind::BoundStep
pub fn proef_core::bind::BoundStep::clone(&self) -> proef_core::bind::BoundStep
impl core::fmt::Debug for proef_core::bind::BoundStep
pub fn proef_core::bind::BoundStep::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::bind::BoundStep
impl core::marker::Send for proef_core::bind::BoundStep
impl core::marker::Sync for proef_core::bind::BoundStep
impl core::marker::Unpin for proef_core::bind::BoundStep
impl core::marker::UnsafeUnpin for proef_core::bind::BoundStep
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::bind::BoundStep
impl core::panic::unwind_safe::UnwindSafe for proef_core::bind::BoundStep
pub fn proef_core::bind::bind(&proef_core::feature::FeatureFile, &proef_core::pack::PackSet) -> core::result::Result<alloc::vec::Vec<proef_core::bind::BoundScenario>, alloc::vec::Vec<proef_core::diag::Diag>>
pub fn proef_core::bind::bind_collect(&proef_core::feature::FeatureFile, &proef_core::pack::PackSet) -> (alloc::vec::Vec<proef_core::bind::BoundScenario>, alloc::vec::Vec<proef_core::diag::Diag>)
pub mod proef_core::cancel
pub use proef_core::cancel::CancellationToken
pub mod proef_core::diag
pub enum proef_core::diag::FrontError
pub proef_core::diag::FrontError::Core(proef_core::error::CoreError)
pub proef_core::diag::FrontError::Diagnostics(alloc::vec::Vec<proef_core::diag::Diag>)
impl proef_core::diag::FrontError
pub fn proef_core::diag::FrontError::exit_code(&self) -> proef_core::error::ExitCode
impl core::convert::From<proef_core::error::CoreError> for proef_core::diag::FrontError
pub fn proef_core::diag::FrontError::from(proef_core::error::CoreError) -> Self
impl core::error::Error for proef_core::diag::FrontError
pub fn proef_core::diag::FrontError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
impl core::fmt::Debug for proef_core::diag::FrontError
pub fn proef_core::diag::FrontError::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for proef_core::diag::FrontError
pub fn proef_core::diag::FrontError::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::diag::FrontError
impl core::marker::Send for proef_core::diag::FrontError
impl core::marker::Sync for proef_core::diag::FrontError
impl core::marker::Unpin for proef_core::diag::FrontError
impl core::marker::UnsafeUnpin for proef_core::diag::FrontError
impl !core::panic::unwind_safe::RefUnwindSafe for proef_core::diag::FrontError
impl !core::panic::unwind_safe::UnwindSafe for proef_core::diag::FrontError
pub enum proef_core::diag::Severity
pub proef_core::diag::Severity::Error
pub proef_core::diag::Severity::Warning
impl core::clone::Clone for proef_core::diag::Severity
pub fn proef_core::diag::Severity::clone(&self) -> proef_core::diag::Severity
impl core::cmp::Eq for proef_core::diag::Severity
impl core::cmp::PartialEq for proef_core::diag::Severity
pub fn proef_core::diag::Severity::eq(&self, &proef_core::diag::Severity) -> bool
impl core::fmt::Debug for proef_core::diag::Severity
pub fn proef_core::diag::Severity::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for proef_core::diag::Severity
impl core::marker::StructuralPartialEq for proef_core::diag::Severity
impl core::marker::Freeze for proef_core::diag::Severity
impl core::marker::Send for proef_core::diag::Severity
impl core::marker::Sync for proef_core::diag::Severity
impl core::marker::Unpin for proef_core::diag::Severity
impl core::marker::UnsafeUnpin for proef_core::diag::Severity
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::diag::Severity
impl core::panic::unwind_safe::UnwindSafe for proef_core::diag::Severity
pub struct proef_core::diag::Diag
pub proef_core::diag::Diag::code: &'static str
pub proef_core::diag::Diag::help: core::option::Option<alloc::string::String>
pub proef_core::diag::Diag::message: alloc::string::String
pub proef_core::diag::Diag::severity: proef_core::diag::Severity
pub proef_core::diag::Diag::source_name: core::option::Option<alloc::string::String>
pub proef_core::diag::Diag::source_text: core::option::Option<alloc::sync::Arc<str>>
pub proef_core::diag::Diag::span: core::option::Option<proef_core::diag::Span>
impl proef_core::diag::Diag
pub fn proef_core::diag::Diag::error(&'static str, impl core::convert::Into<alloc::string::String>) -> Self
pub fn proef_core::diag::Diag::warning(&'static str, impl core::convert::Into<alloc::string::String>) -> Self
pub fn proef_core::diag::Diag::with_help(self, impl core::convert::Into<alloc::string::String>) -> Self
pub fn proef_core::diag::Diag::with_source(self, impl core::convert::Into<alloc::string::String>, alloc::sync::Arc<str>) -> Self
pub fn proef_core::diag::Diag::with_span(self, proef_core::diag::Span) -> Self
impl core::clone::Clone for proef_core::diag::Diag
pub fn proef_core::diag::Diag::clone(&self) -> proef_core::diag::Diag
impl core::cmp::Eq for proef_core::diag::Diag
impl core::cmp::PartialEq for proef_core::diag::Diag
pub fn proef_core::diag::Diag::eq(&self, &proef_core::diag::Diag) -> bool
impl core::fmt::Debug for proef_core::diag::Diag
pub fn proef_core::diag::Diag::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::diag::Diag
impl core::marker::Freeze for proef_core::diag::Diag
impl core::marker::Send for proef_core::diag::Diag
impl core::marker::Sync for proef_core::diag::Diag
impl core::marker::Unpin for proef_core::diag::Diag
impl core::marker::UnsafeUnpin for proef_core::diag::Diag
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::diag::Diag
impl core::panic::unwind_safe::UnwindSafe for proef_core::diag::Diag
pub struct proef_core::diag::Span
pub proef_core::diag::Span::end: usize
pub proef_core::diag::Span::start: usize
impl proef_core::diag::Span
pub fn proef_core::diag::Span::clamped(usize, usize, usize) -> Self
pub fn proef_core::diag::Span::is_empty(&self) -> bool
pub fn proef_core::diag::Span::len(&self) -> usize
impl core::clone::Clone for proef_core::diag::Span
pub fn proef_core::diag::Span::clone(&self) -> proef_core::diag::Span
impl core::cmp::Eq for proef_core::diag::Span
impl core::cmp::PartialEq for proef_core::diag::Span
pub fn proef_core::diag::Span::eq(&self, &proef_core::diag::Span) -> bool
impl core::fmt::Debug for proef_core::diag::Span
pub fn proef_core::diag::Span::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for proef_core::diag::Span
impl core::marker::StructuralPartialEq for proef_core::diag::Span
impl core::marker::Freeze for proef_core::diag::Span
impl core::marker::Send for proef_core::diag::Span
impl core::marker::Sync for proef_core::diag::Span
impl core::marker::Unpin for proef_core::diag::Span
impl core::marker::UnsafeUnpin for proef_core::diag::Span
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::diag::Span
impl core::panic::unwind_safe::UnwindSafe for proef_core::diag::Span
pub mod proef_core::emit
pub struct proef_core::emit::Artifact
pub proef_core::emit::Artifact::hurl_text: alloc::string::String
pub proef_core::emit::Artifact::map: proef_core::emit::SidecarMap
pub proef_core::emit::Artifact::slug: alloc::string::String
pub proef_core::emit::Artifact::vars: core::option::Option<alloc::string::String>
impl core::clone::Clone for proef_core::emit::Artifact
pub fn proef_core::emit::Artifact::clone(&self) -> proef_core::emit::Artifact
impl core::fmt::Debug for proef_core::emit::Artifact
pub fn proef_core::emit::Artifact::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::emit::Artifact
impl core::marker::Send for proef_core::emit::Artifact
impl core::marker::Sync for proef_core::emit::Artifact
impl core::marker::Unpin for proef_core::emit::Artifact
impl core::marker::UnsafeUnpin for proef_core::emit::Artifact
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::emit::Artifact
impl core::panic::unwind_safe::UnwindSafe for proef_core::emit::Artifact
pub struct proef_core::emit::FeatureAnchor
pub proef_core::emit::FeatureAnchor::file: alloc::string::String
pub proef_core::emit::FeatureAnchor::line: usize
pub proef_core::emit::FeatureAnchor::text: alloc::string::String
impl core::clone::Clone for proef_core::emit::FeatureAnchor
pub fn proef_core::emit::FeatureAnchor::clone(&self) -> proef_core::emit::FeatureAnchor
impl core::fmt::Debug for proef_core::emit::FeatureAnchor
pub fn proef_core::emit::FeatureAnchor::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl serde_core::ser::Serialize for proef_core::emit::FeatureAnchor
pub fn proef_core::emit::FeatureAnchor::serialize<__S>(&self, __S) -> core::result::Result<<__S as serde_core::ser::Serializer>::Ok, <__S as serde_core::ser::Serializer>::Error> where __S: serde_core::ser::Serializer
impl core::marker::Freeze for proef_core::emit::FeatureAnchor
impl core::marker::Send for proef_core::emit::FeatureAnchor
impl core::marker::Sync for proef_core::emit::FeatureAnchor
impl core::marker::Unpin for proef_core::emit::FeatureAnchor
impl core::marker::UnsafeUnpin for proef_core::emit::FeatureAnchor
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::emit::FeatureAnchor
impl core::panic::unwind_safe::UnwindSafe for proef_core::emit::FeatureAnchor
pub struct proef_core::emit::MapEntry
pub proef_core::emit::MapEntry::batch: usize
pub proef_core::emit::MapEntry::captures: alloc::vec::Vec<alloc::string::String>
pub proef_core::emit::MapEntry::feature: proef_core::emit::FeatureAnchor
pub proef_core::emit::MapEntry::hurl_lines: [usize; 2]
pub proef_core::emit::MapEntry::optional: bool
pub proef_core::emit::MapEntry::step: usize
impl core::clone::Clone for proef_core::emit::MapEntry
pub fn proef_core::emit::MapEntry::clone(&self) -> proef_core::emit::MapEntry
impl core::fmt::Debug for proef_core::emit::MapEntry
pub fn proef_core::emit::MapEntry::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl serde_core::ser::Serialize for proef_core::emit::MapEntry
pub fn proef_core::emit::MapEntry::serialize<__S>(&self, __S) -> core::result::Result<<__S as serde_core::ser::Serializer>::Ok, <__S as serde_core::ser::Serializer>::Error> where __S: serde_core::ser::Serializer
impl core::marker::Freeze for proef_core::emit::MapEntry
impl core::marker::Send for proef_core::emit::MapEntry
impl core::marker::Sync for proef_core::emit::MapEntry
impl core::marker::Unpin for proef_core::emit::MapEntry
impl core::marker::UnsafeUnpin for proef_core::emit::MapEntry
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::emit::MapEntry
impl core::panic::unwind_safe::UnwindSafe for proef_core::emit::MapEntry
pub struct proef_core::emit::SidecarMap
pub proef_core::emit::SidecarMap::entries: alloc::vec::Vec<proef_core::emit::MapEntry>
pub proef_core::emit::SidecarMap::schema: u32
impl core::clone::Clone for proef_core::emit::SidecarMap
pub fn proef_core::emit::SidecarMap::clone(&self) -> proef_core::emit::SidecarMap
impl core::fmt::Debug for proef_core::emit::SidecarMap
pub fn proef_core::emit::SidecarMap::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl serde_core::ser::Serialize for proef_core::emit::SidecarMap
pub fn proef_core::emit::SidecarMap::serialize<__S>(&self, __S) -> core::result::Result<<__S as serde_core::ser::Serializer>::Ok, <__S as serde_core::ser::Serializer>::Error> where __S: serde_core::ser::Serializer
impl core::marker::Freeze for proef_core::emit::SidecarMap
impl core::marker::Send for proef_core::emit::SidecarMap
impl core::marker::Sync for proef_core::emit::SidecarMap
impl core::marker::Unpin for proef_core::emit::SidecarMap
impl core::marker::UnsafeUnpin for proef_core::emit::SidecarMap
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::emit::SidecarMap
impl core::panic::unwind_safe::UnwindSafe for proef_core::emit::SidecarMap
pub const proef_core::emit::MAP_SCHEMA_VERSION: u32
pub fn proef_core::emit::emit(&proef_core::lower::LoweredScenario, &str, &proef_core::world::World) -> core::option::Option<proef_core::emit::Artifact>
pub fn proef_core::emit::file_references(&str) -> alloc::vec::Vec<alloc::string::String>
pub fn proef_core::emit::slugify(&str) -> alloc::string::String
pub mod proef_core::engine
pub enum proef_core::engine::DoctorStatus
pub proef_core::engine::DoctorStatus::Fail
pub proef_core::engine::DoctorStatus::Pass
pub proef_core::engine::DoctorStatus::Warn
impl core::clone::Clone for proef_core::engine::DoctorStatus
pub fn proef_core::engine::DoctorStatus::clone(&self) -> proef_core::engine::DoctorStatus
impl core::cmp::Eq for proef_core::engine::DoctorStatus
impl core::cmp::Ord for proef_core::engine::DoctorStatus
pub fn proef_core::engine::DoctorStatus::cmp(&self, &proef_core::engine::DoctorStatus) -> core::cmp::Ordering
impl core::cmp::PartialEq for proef_core::engine::DoctorStatus
pub fn proef_core::engine::DoctorStatus::eq(&self, &proef_core::engine::DoctorStatus) -> bool
impl core::cmp::PartialOrd for proef_core::engine::DoctorStatus
pub fn proef_core::engine::DoctorStatus::partial_cmp(&self, &proef_core::engine::DoctorStatus) -> core::option::Option<core::cmp::Ordering>
impl core::fmt::Debug for proef_core::engine::DoctorStatus
pub fn proef_core::engine::DoctorStatus::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for proef_core::engine::DoctorStatus
impl core::marker::StructuralPartialEq for proef_core::engine::DoctorStatus
impl core::marker::Freeze for proef_core::engine::DoctorStatus
impl core::marker::Send for proef_core::engine::DoctorStatus
impl core::marker::Sync for proef_core::engine::DoctorStatus
impl core::marker::Unpin for proef_core::engine::DoctorStatus
impl core::marker::UnsafeUnpin for proef_core::engine::DoctorStatus
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::engine::DoctorStatus
impl core::panic::unwind_safe::UnwindSafe for proef_core::engine::DoctorStatus
pub struct proef_core::engine::ArtifactRef
pub proef_core::engine::ArtifactRef::map: alloc::sync::Arc<proef_core::emit::SidecarMap>
pub proef_core::engine::ArtifactRef::slug: alloc::sync::Arc<str>
pub proef_core::engine::ArtifactRef::text: alloc::sync::Arc<str>
impl core::clone::Clone for proef_core::engine::ArtifactRef
pub fn proef_core::engine::ArtifactRef::clone(&self) -> proef_core::engine::ArtifactRef
impl core::fmt::Debug for proef_core::engine::ArtifactRef
pub fn proef_core::engine::ArtifactRef::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::engine::ArtifactRef
impl core::marker::Send for proef_core::engine::ArtifactRef
impl core::marker::Sync for proef_core::engine::ArtifactRef
impl core::marker::Unpin for proef_core::engine::ArtifactRef
impl core::marker::UnsafeUnpin for proef_core::engine::ArtifactRef
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::engine::ArtifactRef
impl core::panic::unwind_safe::UnwindSafe for proef_core::engine::ArtifactRef
pub struct proef_core::engine::DoctorCheck
pub proef_core::engine::DoctorCheck::name: &'static str
pub proef_core::engine::DoctorCheck::run: fn() -> proef_core::engine::DoctorResult
impl core::fmt::Debug for proef_core::engine::DoctorCheck
pub fn proef_core::engine::DoctorCheck::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::engine::DoctorCheck
impl core::marker::Send for proef_core::engine::DoctorCheck
impl core::marker::Sync for proef_core::engine::DoctorCheck
impl core::marker::Unpin for proef_core::engine::DoctorCheck
impl core::marker::UnsafeUnpin for proef_core::engine::DoctorCheck
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::engine::DoctorCheck
impl core::panic::unwind_safe::UnwindSafe for proef_core::engine::DoctorCheck
pub struct proef_core::engine::DoctorResult
pub proef_core::engine::DoctorResult::detail: alloc::string::String
pub proef_core::engine::DoctorResult::status: proef_core::engine::DoctorStatus
impl proef_core::engine::DoctorResult
pub fn proef_core::engine::DoctorResult::fail(impl core::convert::Into<alloc::string::String>) -> Self
pub fn proef_core::engine::DoctorResult::pass(impl core::convert::Into<alloc::string::String>) -> Self
pub fn proef_core::engine::DoctorResult::warn(impl core::convert::Into<alloc::string::String>) -> Self
impl core::clone::Clone for proef_core::engine::DoctorResult
pub fn proef_core::engine::DoctorResult::clone(&self) -> proef_core::engine::DoctorResult
impl core::cmp::Eq for proef_core::engine::DoctorResult
impl core::cmp::PartialEq for proef_core::engine::DoctorResult
pub fn proef_core::engine::DoctorResult::eq(&self, &proef_core::engine::DoctorResult) -> bool
impl core::fmt::Debug for proef_core::engine::DoctorResult
pub fn proef_core::engine::DoctorResult::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::engine::DoctorResult
impl core::marker::Freeze for proef_core::engine::DoctorResult
impl core::marker::Send for proef_core::engine::DoctorResult
impl core::marker::Sync for proef_core::engine::DoctorResult
impl core::marker::Unpin for proef_core::engine::DoctorResult
impl core::marker::UnsafeUnpin for proef_core::engine::DoctorResult
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::engine::DoctorResult
impl core::panic::unwind_safe::UnwindSafe for proef_core::engine::DoctorResult
pub struct proef_core::engine::EngineId(_)
impl proef_core::engine::EngineId
pub fn proef_core::engine::EngineId::as_str(&self) -> &str
impl core::clone::Clone for proef_core::engine::EngineId
pub fn proef_core::engine::EngineId::clone(&self) -> proef_core::engine::EngineId
impl core::cmp::Eq for proef_core::engine::EngineId
impl core::cmp::PartialEq for proef_core::engine::EngineId
pub fn proef_core::engine::EngineId::eq(&self, &proef_core::engine::EngineId) -> bool
impl core::convert::From<&str> for proef_core::engine::EngineId
pub fn proef_core::engine::EngineId::from(&str) -> Self
impl core::fmt::Debug for proef_core::engine::EngineId
pub fn proef_core::engine::EngineId::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for proef_core::engine::EngineId
pub fn proef_core::engine::EngineId::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for proef_core::engine::EngineId
pub fn proef_core::engine::EngineId::hash<__H: core::hash::Hasher>(&self, &mut __H)
impl core::marker::StructuralPartialEq for proef_core::engine::EngineId
impl core::marker::Freeze for proef_core::engine::EngineId
impl core::marker::Send for proef_core::engine::EngineId
impl core::marker::Sync for proef_core::engine::EngineId
impl core::marker::Unpin for proef_core::engine::EngineId
impl core::marker::UnsafeUnpin for proef_core::engine::EngineId
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::engine::EngineId
impl core::panic::unwind_safe::UnwindSafe for proef_core::engine::EngineId
pub struct proef_core::engine::HttpDefaults
pub proef_core::engine::HttpDefaults::follow_location: bool
pub proef_core::engine::HttpDefaults::timeout_ms: u64
impl core::clone::Clone for proef_core::engine::HttpDefaults
pub fn proef_core::engine::HttpDefaults::clone(&self) -> proef_core::engine::HttpDefaults
impl core::default::Default for proef_core::engine::HttpDefaults
pub fn proef_core::engine::HttpDefaults::default() -> Self
impl core::fmt::Debug for proef_core::engine::HttpDefaults
pub fn proef_core::engine::HttpDefaults::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for proef_core::engine::HttpDefaults
impl core::marker::Freeze for proef_core::engine::HttpDefaults
impl core::marker::Send for proef_core::engine::HttpDefaults
impl core::marker::Sync for proef_core::engine::HttpDefaults
impl core::marker::Unpin for proef_core::engine::HttpDefaults
impl core::marker::UnsafeUnpin for proef_core::engine::HttpDefaults
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::engine::HttpDefaults
impl core::panic::unwind_safe::UnwindSafe for proef_core::engine::HttpDefaults
pub struct proef_core::engine::PayloadProbeError
pub proef_core::engine::PayloadProbeError::column: usize
pub proef_core::engine::PayloadProbeError::line: usize
pub proef_core::engine::PayloadProbeError::message: alloc::string::String
impl core::clone::Clone for proef_core::engine::PayloadProbeError
pub fn proef_core::engine::PayloadProbeError::clone(&self) -> proef_core::engine::PayloadProbeError
impl core::cmp::Eq for proef_core::engine::PayloadProbeError
impl core::cmp::PartialEq for proef_core::engine::PayloadProbeError
pub fn proef_core::engine::PayloadProbeError::eq(&self, &proef_core::engine::PayloadProbeError) -> bool
impl core::fmt::Debug for proef_core::engine::PayloadProbeError
pub fn proef_core::engine::PayloadProbeError::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::engine::PayloadProbeError
impl core::marker::Freeze for proef_core::engine::PayloadProbeError
impl core::marker::Send for proef_core::engine::PayloadProbeError
impl core::marker::Sync for proef_core::engine::PayloadProbeError
impl core::marker::Unpin for proef_core::engine::PayloadProbeError
impl core::marker::UnsafeUnpin for proef_core::engine::PayloadProbeError
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::engine::PayloadProbeError
impl core::panic::unwind_safe::UnwindSafe for proef_core::engine::PayloadProbeError
pub struct proef_core::engine::ScenarioCtx
pub proef_core::engine::ScenarioCtx::artifact: core::option::Option<proef_core::engine::ArtifactRef>
pub proef_core::engine::ScenarioCtx::file_root: core::option::Option<std::path::PathBuf>
pub proef_core::engine::ScenarioCtx::http: proef_core::engine::HttpDefaults
pub proef_core::engine::ScenarioCtx::run_id: alloc::sync::Arc<str>
pub proef_core::engine::ScenarioCtx::scenario: alloc::sync::Arc<str>
pub proef_core::engine::ScenarioCtx::secrets: alloc::sync::Arc<alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>>
impl core::clone::Clone for proef_core::engine::ScenarioCtx
pub fn proef_core::engine::ScenarioCtx::clone(&self) -> proef_core::engine::ScenarioCtx
impl core::fmt::Debug for proef_core::engine::ScenarioCtx
pub fn proef_core::engine::ScenarioCtx::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::engine::ScenarioCtx
impl core::marker::Send for proef_core::engine::ScenarioCtx
impl core::marker::Sync for proef_core::engine::ScenarioCtx
impl core::marker::Unpin for proef_core::engine::ScenarioCtx
impl core::marker::UnsafeUnpin for proef_core::engine::ScenarioCtx
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::engine::ScenarioCtx
impl core::panic::unwind_safe::UnwindSafe for proef_core::engine::ScenarioCtx
pub struct proef_core::engine::StepKindSpec
pub proef_core::engine::StepKindSpec::prefix: &'static str
pub proef_core::engine::StepKindSpec::schema: &'static str
pub proef_core::engine::StepKindSpec::validate: core::option::Option<proef_core::engine::PayloadValidator>
impl core::clone::Clone for proef_core::engine::StepKindSpec
pub fn proef_core::engine::StepKindSpec::clone(&self) -> proef_core::engine::StepKindSpec
impl core::fmt::Debug for proef_core::engine::StepKindSpec
pub fn proef_core::engine::StepKindSpec::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for proef_core::engine::StepKindSpec
impl core::marker::Freeze for proef_core::engine::StepKindSpec
impl core::marker::Send for proef_core::engine::StepKindSpec
impl core::marker::Sync for proef_core::engine::StepKindSpec
impl core::marker::Unpin for proef_core::engine::StepKindSpec
impl core::marker::UnsafeUnpin for proef_core::engine::StepKindSpec
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::engine::StepKindSpec
impl core::panic::unwind_safe::UnwindSafe for proef_core::engine::StepKindSpec
pub trait proef_core::engine::EngineFactory: core::marker::Send + core::marker::Sync
pub fn proef_core::engine::EngineFactory::doctor(&self) -> alloc::vec::Vec<proef_core::engine::DoctorCheck>
pub fn proef_core::engine::EngineFactory::id(&self) -> &'static str
pub fn proef_core::engine::EngineFactory::open(&self, &proef_core::engine::ScenarioCtx) -> core::result::Result<alloc::boxed::Box<dyn proef_core::engine::EngineSession>, proef_core::error::EngineError>
pub fn proef_core::engine::EngineFactory::step_kinds(&self) -> &'static [proef_core::engine::StepKindSpec]
pub trait proef_core::engine::EngineSession: core::marker::Send
pub fn proef_core::engine::EngineSession::batch_budget(&mut self, &proef_core::step::StepBatch) -> core::option::Option<core::time::Duration>
pub fn proef_core::engine::EngineSession::finish(&mut self) -> core::result::Result<(), proef_core::error::EngineError>
pub fn proef_core::engine::EngineSession::run_batch(&mut self, &proef_core::step::StepBatch, &mut proef_core::world::World, &proef_core::event::EventSink, &tokio_util::sync::cancellation_token::CancellationToken) -> proef_core::step::BatchResult
pub type proef_core::engine::PayloadValidator = fn(&str) -> core::result::Result<(), proef_core::engine::PayloadProbeError>
pub mod proef_core::error
pub enum proef_core::error::CoreError
pub proef_core::error::CoreError::System
pub proef_core::error::CoreError::System::message: alloc::string::String
pub proef_core::error::CoreError::System::source: core::option::Option<alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>>
pub proef_core::error::CoreError::TestFailure(alloc::string::String)
pub proef_core::error::CoreError::User(alloc::string::String)
impl proef_core::error::CoreError
pub fn proef_core::error::CoreError::exit_code(&self) -> proef_core::error::ExitCode
pub fn proef_core::error::CoreError::system(impl core::convert::Into<alloc::string::String>) -> Self
pub fn proef_core::error::CoreError::system_with(impl core::convert::Into<alloc::string::String>, impl core::error::Error + core::marker::Send + core::marker::Sync + 'static) -> Self
pub fn proef_core::error::CoreError::user(impl core::convert::Into<alloc::string::String>) -> Self
impl core::convert::From<proef_core::error::CoreError> for proef_core::diag::FrontError
pub fn proef_core::diag::FrontError::from(proef_core::error::CoreError) -> Self
impl core::convert::From<proef_core::error::EngineError> for proef_core::error::CoreError
pub fn proef_core::error::CoreError::from(proef_core::error::EngineError) -> Self
impl core::error::Error for proef_core::error::CoreError
pub fn proef_core::error::CoreError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
impl core::fmt::Debug for proef_core::error::CoreError
pub fn proef_core::error::CoreError::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for proef_core::error::CoreError
pub fn proef_core::error::CoreError::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::error::CoreError
impl core::marker::Send for proef_core::error::CoreError
impl core::marker::Sync for proef_core::error::CoreError
impl core::marker::Unpin for proef_core::error::CoreError
impl core::marker::UnsafeUnpin for proef_core::error::CoreError
impl !core::panic::unwind_safe::RefUnwindSafe for proef_core::error::CoreError
impl !core::panic::unwind_safe::UnwindSafe for proef_core::error::CoreError
pub enum proef_core::error::EngineErrorClass
pub proef_core::error::EngineErrorClass::AssertFailed
pub proef_core::error::EngineErrorClass::Infra
pub proef_core::error::EngineErrorClass::Setup
pub proef_core::error::EngineErrorClass::UserInput
impl core::clone::Clone for proef_core::error::EngineErrorClass
pub fn proef_core::error::EngineErrorClass::clone(&self) -> proef_core::error::EngineErrorClass
impl core::cmp::Eq for proef_core::error::EngineErrorClass
impl core::cmp::PartialEq for proef_core::error::EngineErrorClass
pub fn proef_core::error::EngineErrorClass::eq(&self, &proef_core::error::EngineErrorClass) -> bool
impl core::fmt::Debug for proef_core::error::EngineErrorClass
pub fn proef_core::error::EngineErrorClass::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for proef_core::error::EngineErrorClass
impl core::marker::StructuralPartialEq for proef_core::error::EngineErrorClass
impl core::marker::Freeze for proef_core::error::EngineErrorClass
impl core::marker::Send for proef_core::error::EngineErrorClass
impl core::marker::Sync for proef_core::error::EngineErrorClass
impl core::marker::Unpin for proef_core::error::EngineErrorClass
impl core::marker::UnsafeUnpin for proef_core::error::EngineErrorClass
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::error::EngineErrorClass
impl core::panic::unwind_safe::UnwindSafe for proef_core::error::EngineErrorClass
#[repr(u8)] pub enum proef_core::error::ExitCode
pub proef_core::error::ExitCode::Success = 0
pub proef_core::error::ExitCode::SystemError = 3
pub proef_core::error::ExitCode::TestFailure = 1
pub proef_core::error::ExitCode::UserError = 2
impl proef_core::error::ExitCode
pub fn proef_core::error::ExitCode::code(self) -> u8
impl core::clone::Clone for proef_core::error::ExitCode
pub fn proef_core::error::ExitCode::clone(&self) -> proef_core::error::ExitCode
impl core::cmp::Eq for proef_core::error::ExitCode
impl core::cmp::PartialEq for proef_core::error::ExitCode
pub fn proef_core::error::ExitCode::eq(&self, &proef_core::error::ExitCode) -> bool
impl core::fmt::Debug for proef_core::error::ExitCode
pub fn proef_core::error::ExitCode::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for proef_core::error::ExitCode
pub fn proef_core::error::ExitCode::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for proef_core::error::ExitCode
pub fn proef_core::error::ExitCode::hash<__H: core::hash::Hasher>(&self, &mut __H)
impl core::marker::Copy for proef_core::error::ExitCode
impl core::marker::StructuralPartialEq for proef_core::error::ExitCode
impl core::marker::Freeze for proef_core::error::ExitCode
impl core::marker::Send for proef_core::error::ExitCode
impl core::marker::Sync for proef_core::error::ExitCode
impl core::marker::Unpin for proef_core::error::ExitCode
impl core::marker::UnsafeUnpin for proef_core::error::ExitCode
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::error::ExitCode
impl core::panic::unwind_safe::UnwindSafe for proef_core::error::ExitCode
pub struct proef_core::error::EngineError
pub proef_core::error::EngineError::class: proef_core::error::EngineErrorClass
pub proef_core::error::EngineError::message: alloc::string::String
pub proef_core::error::EngineError::source: core::option::Option<alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>>
impl proef_core::error::EngineError
pub fn proef_core::error::EngineError::assert_failed(impl core::convert::Into<alloc::string::String>) -> Self
pub fn proef_core::error::EngineError::infra(impl core::convert::Into<alloc::string::String>) -> Self
pub fn proef_core::error::EngineError::setup(impl core::convert::Into<alloc::string::String>) -> Self
pub fn proef_core::error::EngineError::user_input(impl core::convert::Into<alloc::string::String>) -> Self
pub fn proef_core::error::EngineError::with_source(self, impl core::error::Error + core::marker::Send + core::marker::Sync + 'static) -> Self
impl core::convert::From<proef_core::error::EngineError> for proef_core::error::CoreError
pub fn proef_core::error::CoreError::from(proef_core::error::EngineError) -> Self
impl core::error::Error for proef_core::error::EngineError
pub fn proef_core::error::EngineError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
impl core::fmt::Debug for proef_core::error::EngineError
pub fn proef_core::error::EngineError::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for proef_core::error::EngineError
pub fn proef_core::error::EngineError::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::error::EngineError
impl core::marker::Send for proef_core::error::EngineError
impl core::marker::Sync for proef_core::error::EngineError
impl core::marker::Unpin for proef_core::error::EngineError
impl core::marker::UnsafeUnpin for proef_core::error::EngineError
impl !core::panic::unwind_safe::RefUnwindSafe for proef_core::error::EngineError
impl !core::panic::unwind_safe::UnwindSafe for proef_core::error::EngineError
pub mod proef_core::event
pub enum proef_core::event::Event
pub proef_core::event::Event::BatchStarted
pub proef_core::event::Event::BatchStarted::engine: alloc::sync::Arc<str>
pub proef_core::event::Event::BatchStarted::scenario: alloc::sync::Arc<str>
pub proef_core::event::Event::BatchStarted::steps: usize
pub proef_core::event::Event::EntryRunning
pub proef_core::event::Event::EntryRunning::engine: alloc::sync::Arc<str>
pub proef_core::event::Event::EntryRunning::entry: usize
pub proef_core::event::Event::EntryRunning::retry: u32
pub proef_core::event::Event::EntryRunning::scenario: alloc::sync::Arc<str>
pub proef_core::event::Event::RunFinished
pub proef_core::event::Event::RunFinished::cancelled: bool
pub proef_core::event::Event::RunFinished::failed: usize
pub proef_core::event::Event::RunFinished::passed: usize
pub proef_core::event::Event::RunFinished::skipped: usize
pub proef_core::event::Event::RunStarted
pub proef_core::event::Event::RunStarted::run_id: alloc::sync::Arc<str>
pub proef_core::event::Event::RunStarted::schema: u32
pub proef_core::event::Event::ScenarioFinished
pub proef_core::event::Event::ScenarioFinished::file: alloc::sync::Arc<str>
pub proef_core::event::Event::ScenarioFinished::scenario: alloc::sync::Arc<str>
pub proef_core::event::Event::ScenarioFinished::status: proef_core::step::Status
pub proef_core::event::Event::ScenarioFinished::timestamp_ms: core::option::Option<u64>
pub proef_core::event::Event::ScenarioFinished::worker: core::option::Option<u64>
pub proef_core::event::Event::ScenarioStarted
pub proef_core::event::Event::ScenarioStarted::file: alloc::sync::Arc<str>
pub proef_core::event::Event::ScenarioStarted::scenario: alloc::sync::Arc<str>
pub proef_core::event::Event::ScenarioStarted::timestamp_ms: core::option::Option<u64>
pub proef_core::event::Event::ScenarioStarted::worker: core::option::Option<u64>
pub proef_core::event::Event::StepFinished
pub proef_core::event::Event::StepFinished::attempt_details: alloc::vec::Vec<alloc::string::String>
pub proef_core::event::Event::StepFinished::attempts: u32
pub proef_core::event::Event::StepFinished::captures: alloc::vec::Vec<alloc::string::String>
pub proef_core::event::Event::StepFinished::detail: core::option::Option<alloc::string::String>
pub proef_core::event::Event::StepFinished::duration_ms: u64
pub proef_core::event::Event::StepFinished::engine: alloc::sync::Arc<str>
pub proef_core::event::Event::StepFinished::scenario: alloc::sync::Arc<str>
pub proef_core::event::Event::StepFinished::status: proef_core::step::Status
pub proef_core::event::Event::StepFinished::step: proef_core::step::StepRef
impl core::clone::Clone for proef_core::event::Event
pub fn proef_core::event::Event::clone(&self) -> proef_core::event::Event
impl core::cmp::PartialEq for proef_core::event::Event
pub fn proef_core::event::Event::eq(&self, &proef_core::event::Event) -> bool
impl core::fmt::Debug for proef_core::event::Event
pub fn proef_core::event::Event::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::event::Event
impl serde_core::ser::Serialize for proef_core::event::Event
pub fn proef_core::event::Event::serialize<__S>(&self, __S) -> core::result::Result<<__S as serde_core::ser::Serializer>::Ok, <__S as serde_core::ser::Serializer>::Error> where __S: serde_core::ser::Serializer
impl<'de> serde_core::de::Deserialize<'de> for proef_core::event::Event
pub fn proef_core::event::Event::deserialize<__D>(__D) -> core::result::Result<Self, <__D as serde_core::de::Deserializer>::Error> where __D: serde_core::de::Deserializer<'de>
impl core::marker::Freeze for proef_core::event::Event
impl core::marker::Send for proef_core::event::Event
impl core::marker::Sync for proef_core::event::Event
impl core::marker::Unpin for proef_core::event::Event
impl core::marker::UnsafeUnpin for proef_core::event::Event
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::event::Event
impl core::panic::unwind_safe::UnwindSafe for proef_core::event::Event
pub struct proef_core::event::EventSink(_)
impl proef_core::event::EventSink
pub fn proef_core::event::EventSink::emit(&self, &proef_core::event::Event)
pub fn proef_core::event::EventSink::new(impl core::ops::function::Fn(&proef_core::event::Event) + core::marker::Send + core::marker::Sync + 'static) -> Self
pub fn proef_core::event::EventSink::null() -> Self
impl core::clone::Clone for proef_core::event::EventSink
pub fn proef_core::event::EventSink::clone(&self) -> proef_core::event::EventSink
impl core::fmt::Debug for proef_core::event::EventSink
pub fn proef_core::event::EventSink::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::event::EventSink
impl core::marker::Send for proef_core::event::EventSink
impl core::marker::Sync for proef_core::event::EventSink
impl core::marker::Unpin for proef_core::event::EventSink
impl core::marker::UnsafeUnpin for proef_core::event::EventSink
impl !core::panic::unwind_safe::RefUnwindSafe for proef_core::event::EventSink
impl !core::panic::unwind_safe::UnwindSafe for proef_core::event::EventSink
pub const proef_core::event::EVENT_SCHEMA_VERSION: u32
pub mod proef_core::fake
pub const proef_core::fake::GENERATORS: &[&str]
pub fn proef_core::fake::generate(&str, usize, &str) -> core::option::Option<alloc::string::String>
pub fn proef_core::fake::is_known_generator(&str) -> bool
pub mod proef_core::feature
pub struct proef_core::feature::FeatureFile
pub proef_core::feature::FeatureFile::name: alloc::string::String
pub proef_core::feature::FeatureFile::path: alloc::string::String
pub proef_core::feature::FeatureFile::scenarios: alloc::vec::Vec<proef_core::feature::ScenarioDef>
pub proef_core::feature::FeatureFile::source: alloc::sync::Arc<str>
pub proef_core::feature::FeatureFile::tags: alloc::vec::Vec<alloc::string::String>
impl core::clone::Clone for proef_core::feature::FeatureFile
pub fn proef_core::feature::FeatureFile::clone(&self) -> proef_core::feature::FeatureFile
impl core::fmt::Debug for proef_core::feature::FeatureFile
pub fn proef_core::feature::FeatureFile::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::feature::FeatureFile
impl core::marker::Send for proef_core::feature::FeatureFile
impl core::marker::Sync for proef_core::feature::FeatureFile
impl core::marker::Unpin for proef_core::feature::FeatureFile
impl core::marker::UnsafeUnpin for proef_core::feature::FeatureFile
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::feature::FeatureFile
impl core::panic::unwind_safe::UnwindSafe for proef_core::feature::FeatureFile
pub struct proef_core::feature::ScenarioDef
pub proef_core::feature::ScenarioDef::line: usize
pub proef_core::feature::ScenarioDef::name: alloc::string::String
pub proef_core::feature::ScenarioDef::steps: alloc::vec::Vec<proef_core::feature::StepDefn>
pub proef_core::feature::ScenarioDef::tags: alloc::vec::Vec<alloc::string::String>
impl core::clone::Clone for proef_core::feature::ScenarioDef
pub fn proef_core::feature::ScenarioDef::clone(&self) -> proef_core::feature::ScenarioDef
impl core::fmt::Debug for proef_core::feature::ScenarioDef
pub fn proef_core::feature::ScenarioDef::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::feature::ScenarioDef
impl core::marker::Send for proef_core::feature::ScenarioDef
impl core::marker::Sync for proef_core::feature::ScenarioDef
impl core::marker::Unpin for proef_core::feature::ScenarioDef
impl core::marker::UnsafeUnpin for proef_core::feature::ScenarioDef
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::feature::ScenarioDef
impl core::panic::unwind_safe::UnwindSafe for proef_core::feature::ScenarioDef
pub struct proef_core::feature::StepDefn
pub proef_core::feature::StepDefn::docstring: core::option::Option<alloc::string::String>
pub proef_core::feature::StepDefn::line: usize
pub proef_core::feature::StepDefn::span: proef_core::diag::Span
pub proef_core::feature::StepDefn::table: core::option::Option<alloc::vec::Vec<alloc::vec::Vec<alloc::string::String>>>
pub proef_core::feature::StepDefn::text: alloc::string::String
impl core::clone::Clone for proef_core::feature::StepDefn
pub fn proef_core::feature::StepDefn::clone(&self) -> proef_core::feature::StepDefn
impl core::fmt::Debug for proef_core::feature::StepDefn
pub fn proef_core::feature::StepDefn::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::feature::StepDefn
impl core::marker::Send for proef_core::feature::StepDefn
impl core::marker::Sync for proef_core::feature::StepDefn
impl core::marker::Unpin for proef_core::feature::StepDefn
impl core::marker::UnsafeUnpin for proef_core::feature::StepDefn
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::feature::StepDefn
impl core::panic::unwind_safe::UnwindSafe for proef_core::feature::StepDefn
pub fn proef_core::feature::parse(&str, &str) -> core::result::Result<proef_core::feature::FeatureFile, alloc::vec::Vec<proef_core::diag::Diag>>
pub mod proef_core::html
pub fn proef_core::html::render_html(&[proef_core::event::Event], &str) -> alloc::string::String
pub mod proef_core::lower
pub struct proef_core::lower::LowerCtx<'a>
pub proef_core::lower::LowerCtx::config_vars: &'a alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::lower::LowerCtx::env: &'a alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::lower::LowerCtx::feature: &'a proef_core::feature::FeatureFile
pub proef_core::lower::LowerCtx::kind_to_engine: &'a alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::lower::LowerCtx::mode: proef_core::resolve::ResolveMode
pub proef_core::lower::LowerCtx::packs: &'a proef_core::pack::PackSet
pub proef_core::lower::LowerCtx::run_id: &'a str
pub proef_core::lower::LowerCtx::world: &'a proef_core::world::World
impl<'a> core::clone::Clone for proef_core::lower::LowerCtx<'a>
pub fn proef_core::lower::LowerCtx<'a>::clone(&self) -> proef_core::lower::LowerCtx<'a>
impl<'a> core::fmt::Debug for proef_core::lower::LowerCtx<'a>
pub fn proef_core::lower::LowerCtx<'a>::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl<'a> core::marker::Copy for proef_core::lower::LowerCtx<'a>
impl<'a> core::marker::Freeze for proef_core::lower::LowerCtx<'a>
impl<'a> core::marker::Send for proef_core::lower::LowerCtx<'a>
impl<'a> core::marker::Sync for proef_core::lower::LowerCtx<'a>
impl<'a> core::marker::Unpin for proef_core::lower::LowerCtx<'a>
impl<'a> core::marker::UnsafeUnpin for proef_core::lower::LowerCtx<'a>
impl<'a> core::panic::unwind_safe::RefUnwindSafe for proef_core::lower::LowerCtx<'a>
impl<'a> core::panic::unwind_safe::UnwindSafe for proef_core::lower::LowerCtx<'a>
pub struct proef_core::lower::LoweredScenario
pub proef_core::lower::LoweredScenario::batches: alloc::vec::Vec<proef_core::step::StepBatch>
pub proef_core::lower::LoweredScenario::globals: alloc::collections::btree::set::BTreeSet<alloc::string::String>
pub proef_core::lower::LoweredScenario::line: usize
pub proef_core::lower::LoweredScenario::name: alloc::string::String
pub proef_core::lower::LoweredScenario::secrets: alloc::collections::btree::set::BTreeSet<alloc::string::String>
pub proef_core::lower::LoweredScenario::tags: alloc::vec::Vec<alloc::string::String>
pub proef_core::lower::LoweredScenario::warnings: alloc::vec::Vec<proef_core::diag::Diag>
impl core::fmt::Debug for proef_core::lower::LoweredScenario
pub fn proef_core::lower::LoweredScenario::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::lower::LoweredScenario
impl core::marker::Send for proef_core::lower::LoweredScenario
impl core::marker::Sync for proef_core::lower::LoweredScenario
impl core::marker::Unpin for proef_core::lower::LoweredScenario
impl core::marker::UnsafeUnpin for proef_core::lower::LoweredScenario
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::lower::LoweredScenario
impl core::panic::unwind_safe::UnwindSafe for proef_core::lower::LoweredScenario
pub fn proef_core::lower::lower(&proef_core::bind::BoundScenario, &proef_core::lower::LowerCtx<'_>) -> core::result::Result<proef_core::lower::LoweredScenario, alloc::vec::Vec<proef_core::diag::Diag>>
pub mod proef_core::matcher
pub enum proef_core::matcher::PatternProblem
pub proef_core::matcher::PatternProblem::AdjacentCaptures
pub proef_core::matcher::PatternProblem::AdjacentCaptures::first: alloc::string::String
pub proef_core::matcher::PatternProblem::AdjacentCaptures::second: alloc::string::String
pub proef_core::matcher::PatternProblem::DuplicateCapture
pub proef_core::matcher::PatternProblem::DuplicateCapture::name: alloc::string::String
pub proef_core::matcher::PatternProblem::EmptyCapture
pub proef_core::matcher::PatternProblem::NoAnchor
pub proef_core::matcher::PatternProblem::UnknownCapture
pub proef_core::matcher::PatternProblem::UnknownCapture::name: alloc::string::String
pub proef_core::matcher::PatternProblem::UnknownCapture::suggestion: core::option::Option<alloc::string::String>
pub proef_core::matcher::PatternProblem::UnsupportedBraces
pub proef_core::matcher::PatternProblem::UnsupportedBraces::near: alloc::string::String
impl proef_core::matcher::PatternProblem
pub fn proef_core::matcher::PatternProblem::code(&self) -> &'static str
impl core::clone::Clone for proef_core::matcher::PatternProblem
pub fn proef_core::matcher::PatternProblem::clone(&self) -> proef_core::matcher::PatternProblem
impl core::cmp::Eq for proef_core::matcher::PatternProblem
impl core::cmp::PartialEq for proef_core::matcher::PatternProblem
pub fn proef_core::matcher::PatternProblem::eq(&self, &proef_core::matcher::PatternProblem) -> bool
impl core::fmt::Debug for proef_core::matcher::PatternProblem
pub fn proef_core::matcher::PatternProblem::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for proef_core::matcher::PatternProblem
pub fn proef_core::matcher::PatternProblem::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::matcher::PatternProblem
impl core::marker::Freeze for proef_core::matcher::PatternProblem
impl core::marker::Send for proef_core::matcher::PatternProblem
impl core::marker::Sync for proef_core::matcher::PatternProblem
impl core::marker::Unpin for proef_core::matcher::PatternProblem
impl core::marker::UnsafeUnpin for proef_core::matcher::PatternProblem
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::matcher::PatternProblem
impl core::panic::unwind_safe::UnwindSafe for proef_core::matcher::PatternProblem
pub enum proef_core::matcher::Token
pub proef_core::matcher::Token::Capture(alloc::string::String)
pub proef_core::matcher::Token::Literal(alloc::string::String)
impl core::clone::Clone for proef_core::matcher::Token
pub fn proef_core::matcher::Token::clone(&self) -> proef_core::matcher::Token
impl core::cmp::Eq for proef_core::matcher::Token
impl core::cmp::PartialEq for proef_core::matcher::Token
pub fn proef_core::matcher::Token::eq(&self, &proef_core::matcher::Token) -> bool
impl core::fmt::Debug for proef_core::matcher::Token
pub fn proef_core::matcher::Token::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::matcher::Token
impl core::marker::Freeze for proef_core::matcher::Token
impl core::marker::Send for proef_core::matcher::Token
impl core::marker::Sync for proef_core::matcher::Token
impl core::marker::Unpin for proef_core::matcher::Token
impl core::marker::UnsafeUnpin for proef_core::matcher::Token
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::matcher::Token
impl core::panic::unwind_safe::UnwindSafe for proef_core::matcher::Token
pub fn proef_core::matcher::closest<'a>(&str, impl core::iter::traits::iterator::Iterator<Item = &'a str>) -> core::option::Option<&'a str>
pub fn proef_core::matcher::levenshtein(&str, &str) -> usize
pub fn proef_core::matcher::literal_skeleton(&str) -> alloc::string::String
pub fn proef_core::matcher::match_pattern(&str, &str) -> core::option::Option<alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>>
pub fn proef_core::matcher::near_duplicate_macros<'a>(impl core::iter::traits::collect::IntoIterator<Item = (&'a str, &'a str)>) -> alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::vec::Vec<alloc::string::String>>
pub fn proef_core::matcher::pattern_problems(&str, &[alloc::string::String]) -> alloc::vec::Vec<proef_core::matcher::PatternProblem>
pub fn proef_core::matcher::prefix_rank(&str, &str) -> (u8, usize)
pub fn proef_core::matcher::tokenize(&str) -> alloc::vec::Vec<proef_core::matcher::Token>
pub mod proef_core::pack
pub enum proef_core::pack::MacroBody
pub proef_core::pack::MacroBody::Expect(alloc::vec::Vec<proef_core::pack::ExpectItem>)
pub proef_core::pack::MacroBody::Steps(alloc::vec::Vec<proef_core::pack::MacroStep>)
impl core::clone::Clone for proef_core::pack::MacroBody
pub fn proef_core::pack::MacroBody::clone(&self) -> proef_core::pack::MacroBody
impl core::fmt::Debug for proef_core::pack::MacroBody
pub fn proef_core::pack::MacroBody::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::pack::MacroBody
impl core::marker::Send for proef_core::pack::MacroBody
impl core::marker::Sync for proef_core::pack::MacroBody
impl core::marker::Unpin for proef_core::pack::MacroBody
impl core::marker::UnsafeUnpin for proef_core::pack::MacroBody
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::pack::MacroBody
impl core::panic::unwind_safe::UnwindSafe for proef_core::pack::MacroBody
pub enum proef_core::pack::MacroStepKind
pub proef_core::pack::MacroStepKind::Payload
pub proef_core::pack::MacroStepKind::Payload::kind: alloc::string::String
pub proef_core::pack::MacroStepKind::Payload::payload: proef_core::pack::PayloadForm
pub proef_core::pack::MacroStepKind::Use
pub proef_core::pack::MacroStepKind::Use::target: alloc::string::String
pub proef_core::pack::MacroStepKind::Use::with: alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
impl core::clone::Clone for proef_core::pack::MacroStepKind
pub fn proef_core::pack::MacroStepKind::clone(&self) -> proef_core::pack::MacroStepKind
impl core::fmt::Debug for proef_core::pack::MacroStepKind
pub fn proef_core::pack::MacroStepKind::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::pack::MacroStepKind
impl core::marker::Send for proef_core::pack::MacroStepKind
impl core::marker::Sync for proef_core::pack::MacroStepKind
impl core::marker::Unpin for proef_core::pack::MacroStepKind
impl core::marker::UnsafeUnpin for proef_core::pack::MacroStepKind
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::pack::MacroStepKind
impl core::panic::unwind_safe::UnwindSafe for proef_core::pack::MacroStepKind
pub enum proef_core::pack::PayloadForm
pub proef_core::pack::PayloadForm::Raw(alloc::string::String)
pub proef_core::pack::PayloadForm::Structured(serde_json::value::Value)
impl core::clone::Clone for proef_core::pack::PayloadForm
pub fn proef_core::pack::PayloadForm::clone(&self) -> proef_core::pack::PayloadForm
impl core::fmt::Debug for proef_core::pack::PayloadForm
pub fn proef_core::pack::PayloadForm::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::pack::PayloadForm
impl core::marker::Send for proef_core::pack::PayloadForm
impl core::marker::Sync for proef_core::pack::PayloadForm
impl core::marker::Unpin for proef_core::pack::PayloadForm
impl core::marker::UnsafeUnpin for proef_core::pack::PayloadForm
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::pack::PayloadForm
impl core::panic::unwind_safe::UnwindSafe for proef_core::pack::PayloadForm
pub struct proef_core::pack::ExpectItem
pub proef_core::pack::ExpectItem::fragment: core::option::Option<alloc::string::String>
pub proef_core::pack::ExpectItem::status: core::option::Option<alloc::string::String>
impl core::clone::Clone for proef_core::pack::ExpectItem
pub fn proef_core::pack::ExpectItem::clone(&self) -> proef_core::pack::ExpectItem
impl core::fmt::Debug for proef_core::pack::ExpectItem
pub fn proef_core::pack::ExpectItem::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::pack::ExpectItem
impl core::marker::Send for proef_core::pack::ExpectItem
impl core::marker::Sync for proef_core::pack::ExpectItem
impl core::marker::Unpin for proef_core::pack::ExpectItem
impl core::marker::UnsafeUnpin for proef_core::pack::ExpectItem
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::pack::ExpectItem
impl core::panic::unwind_safe::UnwindSafe for proef_core::pack::ExpectItem
pub struct proef_core::pack::Macro
pub proef_core::pack::Macro::body: proef_core::pack::MacroBody
pub proef_core::pack::Macro::defaults: alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::pack::Macro::description: core::option::Option<alloc::string::String>
pub proef_core::pack::Macro::match_span: core::option::Option<proef_core::diag::Span>
pub proef_core::pack::Macro::name: alloc::string::String
pub proef_core::pack::Macro::pack: alloc::string::String
pub proef_core::pack::Macro::params: alloc::vec::Vec<alloc::string::String>
pub proef_core::pack::Macro::pattern: core::option::Option<alloc::string::String>
pub proef_core::pack::Macro::source: alloc::sync::Arc<str>
pub proef_core::pack::Macro::span: core::option::Option<proef_core::diag::Span>
pub proef_core::pack::Macro::tags: alloc::vec::Vec<alloc::string::String>
impl core::clone::Clone for proef_core::pack::Macro
pub fn proef_core::pack::Macro::clone(&self) -> proef_core::pack::Macro
impl core::fmt::Debug for proef_core::pack::Macro
pub fn proef_core::pack::Macro::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::pack::Macro
impl core::marker::Send for proef_core::pack::Macro
impl core::marker::Sync for proef_core::pack::Macro
impl core::marker::Unpin for proef_core::pack::Macro
impl core::marker::UnsafeUnpin for proef_core::pack::Macro
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::pack::Macro
impl core::panic::unwind_safe::UnwindSafe for proef_core::pack::Macro
pub struct proef_core::pack::MacroStep
pub proef_core::pack::MacroStep::delay_ms: core::option::Option<u64>
pub proef_core::pack::MacroStep::kind: proef_core::pack::MacroStepKind
pub proef_core::pack::MacroStep::name: core::option::Option<alloc::string::String>
pub proef_core::pack::MacroStep::optional: bool
pub proef_core::pack::MacroStep::retry: core::option::Option<proef_core::step::Retry>
pub proef_core::pack::MacroStep::save_as: alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::pack::MacroStep::when: core::option::Option<alloc::string::String>
impl core::clone::Clone for proef_core::pack::MacroStep
pub fn proef_core::pack::MacroStep::clone(&self) -> proef_core::pack::MacroStep
impl core::fmt::Debug for proef_core::pack::MacroStep
pub fn proef_core::pack::MacroStep::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::pack::MacroStep
impl core::marker::Send for proef_core::pack::MacroStep
impl core::marker::Sync for proef_core::pack::MacroStep
impl core::marker::Unpin for proef_core::pack::MacroStep
impl core::marker::UnsafeUnpin for proef_core::pack::MacroStep
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::pack::MacroStep
impl core::panic::unwind_safe::UnwindSafe for proef_core::pack::MacroStep
pub struct proef_core::pack::PackSet
pub proef_core::pack::PackSet::macros: alloc::collections::btree::map::BTreeMap<alloc::string::String, proef_core::pack::Macro>
impl proef_core::pack::PackSet
pub fn proef_core::pack::PackSet::find_use_target(&self, &str) -> core::option::Option<&proef_core::pack::Macro>
pub fn proef_core::pack::PackSet::step_defs(&self) -> alloc::vec::Vec<(&str, &str)>
impl core::default::Default for proef_core::pack::PackSet
pub fn proef_core::pack::PackSet::default() -> proef_core::pack::PackSet
impl core::fmt::Debug for proef_core::pack::PackSet
pub fn proef_core::pack::PackSet::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::pack::PackSet
impl core::marker::Send for proef_core::pack::PackSet
impl core::marker::Sync for proef_core::pack::PackSet
impl core::marker::Unpin for proef_core::pack::PackSet
impl core::marker::UnsafeUnpin for proef_core::pack::PackSet
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::pack::PackSet
impl core::panic::unwind_safe::UnwindSafe for proef_core::pack::PackSet
pub struct proef_core::pack::PackSource
pub proef_core::pack::PackSource::name: alloc::string::String
pub proef_core::pack::PackSource::text: alloc::sync::Arc<str>
impl core::clone::Clone for proef_core::pack::PackSource
pub fn proef_core::pack::PackSource::clone(&self) -> proef_core::pack::PackSource
impl core::fmt::Debug for proef_core::pack::PackSource
pub fn proef_core::pack::PackSource::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::pack::PackSource
impl core::marker::Send for proef_core::pack::PackSource
impl core::marker::Sync for proef_core::pack::PackSource
impl core::marker::Unpin for proef_core::pack::PackSource
impl core::marker::UnsafeUnpin for proef_core::pack::PackSource
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::pack::PackSource
impl core::panic::unwind_safe::UnwindSafe for proef_core::pack::PackSource
pub fn proef_core::pack::builtin_sources() -> alloc::vec::Vec<proef_core::pack::PackSource>
pub fn proef_core::pack::json_schema(&[proef_core::engine::StepKindSpec]) -> serde_json::value::Value
pub fn proef_core::pack::load(&[proef_core::pack::PackSource], &[proef_core::engine::StepKindSpec]) -> core::result::Result<proef_core::pack::PackSet, proef_core::diag::FrontError>
pub mod proef_core::provider
pub struct proef_core::provider::ProviderError(pub alloc::string::String)
impl core::clone::Clone for proef_core::provider::ProviderError
pub fn proef_core::provider::ProviderError::clone(&self) -> proef_core::provider::ProviderError
impl core::cmp::Eq for proef_core::provider::ProviderError
impl core::cmp::PartialEq for proef_core::provider::ProviderError
pub fn proef_core::provider::ProviderError::eq(&self, &proef_core::provider::ProviderError) -> bool
impl core::error::Error for proef_core::provider::ProviderError
impl core::fmt::Debug for proef_core::provider::ProviderError
pub fn proef_core::provider::ProviderError::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for proef_core::provider::ProviderError
pub fn proef_core::provider::ProviderError::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::provider::ProviderError
impl core::marker::Freeze for proef_core::provider::ProviderError
impl core::marker::Send for proef_core::provider::ProviderError
impl core::marker::Sync for proef_core::provider::ProviderError
impl core::marker::Unpin for proef_core::provider::ProviderError
impl core::marker::UnsafeUnpin for proef_core::provider::ProviderError
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::provider::ProviderError
impl core::panic::unwind_safe::UnwindSafe for proef_core::provider::ProviderError
pub trait proef_core::provider::SourceProvider
pub fn proef_core::provider::SourceProvider::discover_features(&self) -> core::result::Result<alloc::vec::Vec<alloc::string::String>, proef_core::provider::ProviderError>
pub fn proef_core::provider::SourceProvider::discover_packs(&self) -> core::result::Result<alloc::vec::Vec<alloc::string::String>, proef_core::provider::ProviderError>
pub fn proef_core::provider::SourceProvider::read(&self, &str) -> core::result::Result<alloc::sync::Arc<str>, proef_core::provider::ProviderError>
pub mod proef_core::report
pub struct proef_core::report::ConsoleReporter<W: core::io::write::Write + core::marker::Send>
impl<W: core::io::write::Write + core::marker::Send> proef_core::report::ConsoleReporter<W>
pub fn proef_core::report::ConsoleReporter<W>::new(W, proef_core::report::Redactions) -> Self
impl<W: core::io::write::Write + core::marker::Send> proef_core::report::Reporter for proef_core::report::ConsoleReporter<W>
pub fn proef_core::report::ConsoleReporter<W>::on_event(&mut self, &proef_core::event::Event)
impl<W> core::marker::Freeze for proef_core::report::ConsoleReporter<W> where W: core::marker::Freeze
impl<W> core::marker::Send for proef_core::report::ConsoleReporter<W>
impl<W> core::marker::Sync for proef_core::report::ConsoleReporter<W> where W: core::marker::Sync
impl<W> core::marker::Unpin for proef_core::report::ConsoleReporter<W> where W: core::marker::Unpin
impl<W> core::marker::UnsafeUnpin for proef_core::report::ConsoleReporter<W> where W: core::marker::UnsafeUnpin
impl<W> core::panic::unwind_safe::RefUnwindSafe for proef_core::report::ConsoleReporter<W> where W: core::panic::unwind_safe::RefUnwindSafe
impl<W> core::panic::unwind_safe::UnwindSafe for proef_core::report::ConsoleReporter<W> where W: core::panic::unwind_safe::UnwindSafe
pub struct proef_core::report::JsonlReporter<W: core::io::write::Write + core::marker::Send>
impl<W: core::io::write::Write + core::marker::Send> proef_core::report::JsonlReporter<W>
pub fn proef_core::report::JsonlReporter<W>::new(W) -> Self
impl<W: core::io::write::Write + core::marker::Send> proef_core::report::Reporter for proef_core::report::JsonlReporter<W>
pub fn proef_core::report::JsonlReporter<W>::on_event(&mut self, &proef_core::event::Event)
impl<W> core::marker::Freeze for proef_core::report::JsonlReporter<W> where W: core::marker::Freeze
impl<W> core::marker::Send for proef_core::report::JsonlReporter<W>
impl<W> core::marker::Sync for proef_core::report::JsonlReporter<W> where W: core::marker::Sync
impl<W> core::marker::Unpin for proef_core::report::JsonlReporter<W> where W: core::marker::Unpin
impl<W> core::marker::UnsafeUnpin for proef_core::report::JsonlReporter<W> where W: core::marker::UnsafeUnpin
impl<W> core::panic::unwind_safe::RefUnwindSafe for proef_core::report::JsonlReporter<W> where W: core::panic::unwind_safe::RefUnwindSafe
impl<W> core::panic::unwind_safe::UnwindSafe for proef_core::report::JsonlReporter<W> where W: core::panic::unwind_safe::UnwindSafe
pub struct proef_core::report::Redactions(_)
impl proef_core::report::Redactions
pub fn proef_core::report::Redactions::apply(&self, &str) -> alloc::string::String
pub fn proef_core::report::Redactions::apply_event(&self, &proef_core::event::Event) -> proef_core::event::Event
pub fn proef_core::report::Redactions::is_empty(&self) -> bool
pub fn proef_core::report::Redactions::new(impl core::iter::traits::collect::IntoIterator<Item = alloc::string::String>) -> Self
impl core::clone::Clone for proef_core::report::Redactions
pub fn proef_core::report::Redactions::clone(&self) -> proef_core::report::Redactions
impl core::default::Default for proef_core::report::Redactions
pub fn proef_core::report::Redactions::default() -> proef_core::report::Redactions
impl core::fmt::Debug for proef_core::report::Redactions
pub fn proef_core::report::Redactions::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::report::Redactions
impl core::marker::Send for proef_core::report::Redactions
impl core::marker::Sync for proef_core::report::Redactions
impl core::marker::Unpin for proef_core::report::Redactions
impl core::marker::UnsafeUnpin for proef_core::report::Redactions
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::report::Redactions
impl core::panic::unwind_safe::UnwindSafe for proef_core::report::Redactions
pub struct proef_core::report::RunTotals
pub proef_core::report::RunTotals::attempts: u64
pub proef_core::report::RunTotals::failed: usize
pub proef_core::report::RunTotals::passed: usize
pub proef_core::report::RunTotals::skipped: usize
pub proef_core::report::RunTotals::steps: usize
impl proef_core::report::RunTotals
pub fn proef_core::report::RunTotals::observe(&mut self, &proef_core::event::Event)
impl core::clone::Clone for proef_core::report::RunTotals
pub fn proef_core::report::RunTotals::clone(&self) -> proef_core::report::RunTotals
impl core::cmp::Eq for proef_core::report::RunTotals
impl core::cmp::PartialEq for proef_core::report::RunTotals
pub fn proef_core::report::RunTotals::eq(&self, &proef_core::report::RunTotals) -> bool
impl core::default::Default for proef_core::report::RunTotals
pub fn proef_core::report::RunTotals::default() -> proef_core::report::RunTotals
impl core::fmt::Debug for proef_core::report::RunTotals
pub fn proef_core::report::RunTotals::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for proef_core::report::RunTotals
impl core::marker::StructuralPartialEq for proef_core::report::RunTotals
impl core::marker::Freeze for proef_core::report::RunTotals
impl core::marker::Send for proef_core::report::RunTotals
impl core::marker::Sync for proef_core::report::RunTotals
impl core::marker::Unpin for proef_core::report::RunTotals
impl core::marker::UnsafeUnpin for proef_core::report::RunTotals
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::report::RunTotals
impl core::panic::unwind_safe::UnwindSafe for proef_core::report::RunTotals
pub trait proef_core::report::Reporter: core::marker::Send
pub fn proef_core::report::Reporter::on_event(&mut self, &proef_core::event::Event)
impl<W: core::io::write::Write + core::marker::Send> proef_core::report::Reporter for proef_core::report::ConsoleReporter<W>
pub fn proef_core::report::ConsoleReporter<W>::on_event(&mut self, &proef_core::event::Event)
impl<W: core::io::write::Write + core::marker::Send> proef_core::report::Reporter for proef_core::report::JsonlReporter<W>
pub fn proef_core::report::JsonlReporter<W>::on_event(&mut self, &proef_core::event::Event)
pub fn proef_core::report::sink(alloc::vec::Vec<alloc::boxed::Box<dyn proef_core::report::Reporter>>, proef_core::report::Redactions) -> proef_core::event::EventSink
pub mod proef_core::resolve
pub enum proef_core::resolve::ResolveError
pub proef_core::resolve::ResolveError::DepthExceeded
pub proef_core::resolve::ResolveError::DepthExceeded::name: alloc::string::String
pub proef_core::resolve::ResolveError::EmptyReference
pub proef_core::resolve::ResolveError::FakeUnknown
pub proef_core::resolve::ResolveError::FakeUnknown::kind: alloc::string::String
pub proef_core::resolve::ResolveError::FakeUnknown::suggestion: core::option::Option<alloc::string::String>
pub proef_core::resolve::ResolveError::MissingConfigVar
pub proef_core::resolve::ResolveError::MissingConfigVar::key: alloc::string::String
pub proef_core::resolve::ResolveError::MissingConfigVar::namespace: alloc::string::String
pub proef_core::resolve::ResolveError::MissingEnv
pub proef_core::resolve::ResolveError::MissingEnv::name: alloc::string::String
pub proef_core::resolve::ResolveError::MissingGlobal
pub proef_core::resolve::ResolveError::MissingGlobal::key: alloc::string::String
pub proef_core::resolve::ResolveError::UnknownNamespace
pub proef_core::resolve::ResolveError::UnknownNamespace::namespace: alloc::string::String
pub proef_core::resolve::ResolveError::UnknownRunField
pub proef_core::resolve::ResolveError::UnknownRunField::field: alloc::string::String
pub proef_core::resolve::ResolveError::UnknownVariable
pub proef_core::resolve::ResolveError::UnknownVariable::name: alloc::string::String
pub proef_core::resolve::ResolveError::UnknownVariable::suggestion: core::option::Option<alloc::string::String>
impl proef_core::resolve::ResolveError
pub fn proef_core::resolve::ResolveError::code(&self) -> &'static str
impl core::clone::Clone for proef_core::resolve::ResolveError
pub fn proef_core::resolve::ResolveError::clone(&self) -> proef_core::resolve::ResolveError
impl core::cmp::Eq for proef_core::resolve::ResolveError
impl core::cmp::PartialEq for proef_core::resolve::ResolveError
pub fn proef_core::resolve::ResolveError::eq(&self, &proef_core::resolve::ResolveError) -> bool
impl core::error::Error for proef_core::resolve::ResolveError
impl core::fmt::Debug for proef_core::resolve::ResolveError
pub fn proef_core::resolve::ResolveError::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for proef_core::resolve::ResolveError
pub fn proef_core::resolve::ResolveError::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::resolve::ResolveError
impl core::marker::Freeze for proef_core::resolve::ResolveError
impl core::marker::Send for proef_core::resolve::ResolveError
impl core::marker::Sync for proef_core::resolve::ResolveError
impl core::marker::Unpin for proef_core::resolve::ResolveError
impl core::marker::UnsafeUnpin for proef_core::resolve::ResolveError
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::resolve::ResolveError
impl core::panic::unwind_safe::UnwindSafe for proef_core::resolve::ResolveError
pub enum proef_core::resolve::ResolveMode
pub proef_core::resolve::ResolveMode::DryRun
pub proef_core::resolve::ResolveMode::Probe
pub proef_core::resolve::ResolveMode::Strict
impl core::clone::Clone for proef_core::resolve::ResolveMode
pub fn proef_core::resolve::ResolveMode::clone(&self) -> proef_core::resolve::ResolveMode
impl core::cmp::Eq for proef_core::resolve::ResolveMode
impl core::cmp::PartialEq for proef_core::resolve::ResolveMode
pub fn proef_core::resolve::ResolveMode::eq(&self, &proef_core::resolve::ResolveMode) -> bool
impl core::fmt::Debug for proef_core::resolve::ResolveMode
pub fn proef_core::resolve::ResolveMode::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for proef_core::resolve::ResolveMode
impl core::marker::StructuralPartialEq for proef_core::resolve::ResolveMode
impl core::marker::Freeze for proef_core::resolve::ResolveMode
impl core::marker::Send for proef_core::resolve::ResolveMode
impl core::marker::Sync for proef_core::resolve::ResolveMode
impl core::marker::Unpin for proef_core::resolve::ResolveMode
impl core::marker::UnsafeUnpin for proef_core::resolve::ResolveMode
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::resolve::ResolveMode
impl core::panic::unwind_safe::UnwindSafe for proef_core::resolve::ResolveMode
pub struct proef_core::resolve::Resolution
pub proef_core::resolve::Resolution::fakes: usize
pub proef_core::resolve::Resolution::globals: alloc::collections::btree::set::BTreeSet<alloc::string::String>
pub proef_core::resolve::Resolution::secrets: alloc::collections::btree::set::BTreeSet<alloc::string::String>
pub proef_core::resolve::Resolution::text: alloc::string::String
pub proef_core::resolve::Resolution::warnings: alloc::vec::Vec<alloc::string::String>
impl core::clone::Clone for proef_core::resolve::Resolution
pub fn proef_core::resolve::Resolution::clone(&self) -> proef_core::resolve::Resolution
impl core::cmp::Eq for proef_core::resolve::Resolution
impl core::cmp::PartialEq for proef_core::resolve::Resolution
pub fn proef_core::resolve::Resolution::eq(&self, &proef_core::resolve::Resolution) -> bool
impl core::default::Default for proef_core::resolve::Resolution
pub fn proef_core::resolve::Resolution::default() -> proef_core::resolve::Resolution
impl core::fmt::Debug for proef_core::resolve::Resolution
pub fn proef_core::resolve::Resolution::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::resolve::Resolution
impl core::marker::Freeze for proef_core::resolve::Resolution
impl core::marker::Send for proef_core::resolve::Resolution
impl core::marker::Sync for proef_core::resolve::Resolution
impl core::marker::Unpin for proef_core::resolve::Resolution
impl core::marker::UnsafeUnpin for proef_core::resolve::Resolution
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::resolve::Resolution
impl core::panic::unwind_safe::UnwindSafe for proef_core::resolve::Resolution
pub struct proef_core::resolve::ResolveCtx<'a>
pub proef_core::resolve::ResolveCtx::args: &'a alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::resolve::ResolveCtx::config_vars: &'a alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::resolve::ResolveCtx::defaults: &'a alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::resolve::ResolveCtx::env: &'a alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::resolve::ResolveCtx::mode: proef_core::resolve::ResolveMode
pub proef_core::resolve::ResolveCtx::run_id: &'a str
pub proef_core::resolve::ResolveCtx::world: &'a proef_core::world::World
impl<'a> core::clone::Clone for proef_core::resolve::ResolveCtx<'a>
pub fn proef_core::resolve::ResolveCtx<'a>::clone(&self) -> proef_core::resolve::ResolveCtx<'a>
impl<'a> core::fmt::Debug for proef_core::resolve::ResolveCtx<'a>
pub fn proef_core::resolve::ResolveCtx<'a>::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl<'a> core::marker::Copy for proef_core::resolve::ResolveCtx<'a>
impl<'a> core::marker::Freeze for proef_core::resolve::ResolveCtx<'a>
impl<'a> core::marker::Send for proef_core::resolve::ResolveCtx<'a>
impl<'a> core::marker::Sync for proef_core::resolve::ResolveCtx<'a>
impl<'a> core::marker::Unpin for proef_core::resolve::ResolveCtx<'a>
impl<'a> core::marker::UnsafeUnpin for proef_core::resolve::ResolveCtx<'a>
impl<'a> core::panic::unwind_safe::RefUnwindSafe for proef_core::resolve::ResolveCtx<'a>
impl<'a> core::panic::unwind_safe::UnwindSafe for proef_core::resolve::ResolveCtx<'a>
pub const proef_core::resolve::MAX_DEPTH: usize
pub fn proef_core::resolve::resolve(&str, &proef_core::resolve::ResolveCtx<'_>) -> core::result::Result<proef_core::resolve::Resolution, proef_core::resolve::ResolveError>
pub mod proef_core::runner
pub enum proef_core::runner::Fault
pub proef_core::runner::Fault::System(alloc::string::String)
pub proef_core::runner::Fault::User(alloc::string::String)
impl core::fmt::Debug for proef_core::runner::Fault
pub fn proef_core::runner::Fault::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::runner::Fault
impl core::marker::Send for proef_core::runner::Fault
impl core::marker::Sync for proef_core::runner::Fault
impl core::marker::Unpin for proef_core::runner::Fault
impl core::marker::UnsafeUnpin for proef_core::runner::Fault
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::runner::Fault
impl core::panic::unwind_safe::UnwindSafe for proef_core::runner::Fault
pub struct proef_core::runner::Prepared
pub proef_core::runner::Prepared::artifact: core::option::Option<proef_core::engine::ArtifactRef>
pub proef_core::runner::Prepared::batches: alloc::vec::Vec<proef_core::step::StepBatch>
impl core::marker::Freeze for proef_core::runner::Prepared
impl core::marker::Send for proef_core::runner::Prepared
impl core::marker::Sync for proef_core::runner::Prepared
impl core::marker::Unpin for proef_core::runner::Prepared
impl core::marker::UnsafeUnpin for proef_core::runner::Prepared
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::runner::Prepared
impl core::panic::unwind_safe::UnwindSafe for proef_core::runner::Prepared
pub struct proef_core::runner::RunConfig
pub proef_core::runner::RunConfig::default_batch_budget: core::time::Duration
pub proef_core::runner::RunConfig::http: proef_core::engine::HttpDefaults
pub proef_core::runner::RunConfig::jobs: usize
pub proef_core::runner::RunConfig::run_id: alloc::sync::Arc<str>
pub proef_core::runner::RunConfig::secrets: alloc::sync::Arc<alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>>
impl core::clone::Clone for proef_core::runner::RunConfig
pub fn proef_core::runner::RunConfig::clone(&self) -> proef_core::runner::RunConfig
impl core::marker::Freeze for proef_core::runner::RunConfig
impl core::marker::Send for proef_core::runner::RunConfig
impl core::marker::Sync for proef_core::runner::RunConfig
impl core::marker::Unpin for proef_core::runner::RunConfig
impl core::marker::UnsafeUnpin for proef_core::runner::RunConfig
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::runner::RunConfig
impl core::panic::unwind_safe::UnwindSafe for proef_core::runner::RunConfig
pub struct proef_core::runner::RunSummary
pub proef_core::runner::RunSummary::cancelled: bool
pub proef_core::runner::RunSummary::failed: usize
pub proef_core::runner::RunSummary::outcomes: alloc::vec::Vec<proef_core::runner::ScenarioOutcome>
pub proef_core::runner::RunSummary::passed: usize
pub proef_core::runner::RunSummary::skipped: usize
impl proef_core::runner::RunSummary
pub fn proef_core::runner::RunSummary::exit_code(&self) -> proef_core::error::ExitCode
pub fn proef_core::runner::RunSummary::exit_code_excluding(&self, &[(alloc::string::String, alloc::string::String)]) -> proef_core::error::ExitCode
impl core::fmt::Debug for proef_core::runner::RunSummary
pub fn proef_core::runner::RunSummary::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::runner::RunSummary
impl core::marker::Send for proef_core::runner::RunSummary
impl core::marker::Sync for proef_core::runner::RunSummary
impl core::marker::Unpin for proef_core::runner::RunSummary
impl core::marker::UnsafeUnpin for proef_core::runner::RunSummary
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::runner::RunSummary
impl core::panic::unwind_safe::UnwindSafe for proef_core::runner::RunSummary
pub struct proef_core::runner::ScenarioOutcome
pub proef_core::runner::ScenarioOutcome::artifact_slug: core::option::Option<alloc::sync::Arc<str>>
pub proef_core::runner::ScenarioOutcome::fault: core::option::Option<proef_core::runner::Fault>
pub proef_core::runner::ScenarioOutcome::file: alloc::sync::Arc<str>
pub proef_core::runner::ScenarioOutcome::line: usize
pub proef_core::runner::ScenarioOutcome::name: alloc::sync::Arc<str>
pub proef_core::runner::ScenarioOutcome::status: proef_core::step::Status
pub proef_core::runner::ScenarioOutcome::steps: alloc::vec::Vec<proef_core::step::StepOutcome>
impl core::fmt::Debug for proef_core::runner::ScenarioOutcome
pub fn proef_core::runner::ScenarioOutcome::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::runner::ScenarioOutcome
impl core::marker::Send for proef_core::runner::ScenarioOutcome
impl core::marker::Sync for proef_core::runner::ScenarioOutcome
impl core::marker::Unpin for proef_core::runner::ScenarioOutcome
impl core::marker::UnsafeUnpin for proef_core::runner::ScenarioOutcome
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::runner::ScenarioOutcome
impl core::panic::unwind_safe::UnwindSafe for proef_core::runner::ScenarioOutcome
pub struct proef_core::runner::ScenarioSpec
pub proef_core::runner::ScenarioSpec::file: alloc::sync::Arc<str>
pub proef_core::runner::ScenarioSpec::file_root: core::option::Option<std::path::PathBuf>
pub proef_core::runner::ScenarioSpec::line: usize
pub proef_core::runner::ScenarioSpec::name: alloc::sync::Arc<str>
pub proef_core::runner::ScenarioSpec::prepare: proef_core::runner::PrepareFn
impl core::marker::Freeze for proef_core::runner::ScenarioSpec
impl core::marker::Send for proef_core::runner::ScenarioSpec
impl !core::marker::Sync for proef_core::runner::ScenarioSpec
impl core::marker::Unpin for proef_core::runner::ScenarioSpec
impl core::marker::UnsafeUnpin for proef_core::runner::ScenarioSpec
impl !core::panic::unwind_safe::RefUnwindSafe for proef_core::runner::ScenarioSpec
impl !core::panic::unwind_safe::UnwindSafe for proef_core::runner::ScenarioSpec
pub fn proef_core::runner::run(alloc::vec::Vec<proef_core::runner::ScenarioSpec>, &alloc::sync::Arc<alloc::vec::Vec<alloc::boxed::Box<dyn proef_core::engine::EngineFactory>>>, &alloc::sync::Arc<std::sync::poison::mutex::Mutex<proef_core::world::GlobalStore>>, &proef_core::runner::RunConfig, &proef_core::event::EventSink, &tokio_util::sync::cancellation_token::CancellationToken) -> proef_core::runner::RunSummary
pub type proef_core::runner::PrepareFn = alloc::boxed::Box<(dyn core::ops::function::FnOnce(&proef_core::world::World) -> core::result::Result<proef_core::runner::Prepared, alloc::vec::Vec<proef_core::diag::Diag>> + core::marker::Send)>
pub mod proef_core::step
pub enum proef_core::step::Status
pub proef_core::step::Status::Failed
pub proef_core::step::Status::Passed
pub proef_core::step::Status::Skipped
pub proef_core::step::Status::Warned
impl core::clone::Clone for proef_core::step::Status
pub fn proef_core::step::Status::clone(&self) -> proef_core::step::Status
impl core::cmp::Eq for proef_core::step::Status
impl core::cmp::PartialEq for proef_core::step::Status
pub fn proef_core::step::Status::eq(&self, &proef_core::step::Status) -> bool
impl core::fmt::Debug for proef_core::step::Status
pub fn proef_core::step::Status::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for proef_core::step::Status
impl core::marker::StructuralPartialEq for proef_core::step::Status
impl serde_core::ser::Serialize for proef_core::step::Status
pub fn proef_core::step::Status::serialize<__S>(&self, __S) -> core::result::Result<<__S as serde_core::ser::Serializer>::Ok, <__S as serde_core::ser::Serializer>::Error> where __S: serde_core::ser::Serializer
impl<'de> serde_core::de::Deserialize<'de> for proef_core::step::Status
pub fn proef_core::step::Status::deserialize<__D>(__D) -> core::result::Result<Self, <__D as serde_core::de::Deserializer>::Error> where __D: serde_core::de::Deserializer<'de>
impl core::marker::Freeze for proef_core::step::Status
impl core::marker::Send for proef_core::step::Status
impl core::marker::Sync for proef_core::step::Status
impl core::marker::Unpin for proef_core::step::Status
impl core::marker::UnsafeUnpin for proef_core::step::Status
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::step::Status
impl core::panic::unwind_safe::UnwindSafe for proef_core::step::Status
pub enum proef_core::step::StepPayload
pub proef_core::step::StepPayload::HurlEntries(alloc::string::String)
pub proef_core::step::StepPayload::MergedAsserts
pub proef_core::step::StepPayload::MergedAsserts::lines: usize
pub proef_core::step::StepPayload::Structured(serde_json::value::Value)
impl core::clone::Clone for proef_core::step::StepPayload
pub fn proef_core::step::StepPayload::clone(&self) -> proef_core::step::StepPayload
impl core::cmp::PartialEq for proef_core::step::StepPayload
pub fn proef_core::step::StepPayload::eq(&self, &proef_core::step::StepPayload) -> bool
impl core::fmt::Debug for proef_core::step::StepPayload
pub fn proef_core::step::StepPayload::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::step::StepPayload
impl core::marker::Freeze for proef_core::step::StepPayload
impl core::marker::Send for proef_core::step::StepPayload
impl core::marker::Sync for proef_core::step::StepPayload
impl core::marker::Unpin for proef_core::step::StepPayload
impl core::marker::UnsafeUnpin for proef_core::step::StepPayload
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::step::StepPayload
impl core::panic::unwind_safe::UnwindSafe for proef_core::step::StepPayload
pub struct proef_core::step::BatchResult
pub proef_core::step::BatchResult::error: core::option::Option<proef_core::error::EngineError>
pub proef_core::step::BatchResult::steps: alloc::vec::Vec<proef_core::step::StepOutcome>
impl core::fmt::Debug for proef_core::step::BatchResult
pub fn proef_core::step::BatchResult::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::step::BatchResult
impl core::marker::Send for proef_core::step::BatchResult
impl core::marker::Sync for proef_core::step::BatchResult
impl core::marker::Unpin for proef_core::step::BatchResult
impl core::marker::UnsafeUnpin for proef_core::step::BatchResult
impl !core::panic::unwind_safe::RefUnwindSafe for proef_core::step::BatchResult
impl !core::panic::unwind_safe::UnwindSafe for proef_core::step::BatchResult
pub struct proef_core::step::Guard(pub alloc::string::String)
impl proef_core::step::Guard
pub fn proef_core::step::Guard::skips(&self) -> bool
impl core::clone::Clone for proef_core::step::Guard
pub fn proef_core::step::Guard::clone(&self) -> proef_core::step::Guard
impl core::cmp::Eq for proef_core::step::Guard
impl core::cmp::PartialEq for proef_core::step::Guard
pub fn proef_core::step::Guard::eq(&self, &proef_core::step::Guard) -> bool
impl core::fmt::Debug for proef_core::step::Guard
pub fn proef_core::step::Guard::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::step::Guard
impl serde_core::ser::Serialize for proef_core::step::Guard
pub fn proef_core::step::Guard::serialize<__S>(&self, __S) -> core::result::Result<<__S as serde_core::ser::Serializer>::Ok, <__S as serde_core::ser::Serializer>::Error> where __S: serde_core::ser::Serializer
impl<'de> serde_core::de::Deserialize<'de> for proef_core::step::Guard
pub fn proef_core::step::Guard::deserialize<__D>(__D) -> core::result::Result<Self, <__D as serde_core::de::Deserializer>::Error> where __D: serde_core::de::Deserializer<'de>
impl core::marker::Freeze for proef_core::step::Guard
impl core::marker::Send for proef_core::step::Guard
impl core::marker::Sync for proef_core::step::Guard
impl core::marker::Unpin for proef_core::step::Guard
impl core::marker::UnsafeUnpin for proef_core::step::Guard
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::step::Guard
impl core::panic::unwind_safe::UnwindSafe for proef_core::step::Guard
pub struct proef_core::step::LoweredStep
pub proef_core::step::LoweredStep::kind: proef_core::step::StepKindId
pub proef_core::step::LoweredStep::label: core::option::Option<alloc::string::String>
pub proef_core::step::LoweredStep::optional: bool
pub proef_core::step::LoweredStep::payload: proef_core::step::StepPayload
pub proef_core::step::LoweredStep::save_as: alloc::collections::btree::map::BTreeMap<alloc::string::String, alloc::string::String>
pub proef_core::step::LoweredStep::step: proef_core::step::StepRef
pub proef_core::step::LoweredStep::when: core::option::Option<proef_core::step::Guard>
impl core::clone::Clone for proef_core::step::LoweredStep
pub fn proef_core::step::LoweredStep::clone(&self) -> proef_core::step::LoweredStep
impl core::cmp::PartialEq for proef_core::step::LoweredStep
pub fn proef_core::step::LoweredStep::eq(&self, &proef_core::step::LoweredStep) -> bool
impl core::fmt::Debug for proef_core::step::LoweredStep
pub fn proef_core::step::LoweredStep::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::step::LoweredStep
impl core::marker::Freeze for proef_core::step::LoweredStep
impl core::marker::Send for proef_core::step::LoweredStep
impl core::marker::Sync for proef_core::step::LoweredStep
impl core::marker::Unpin for proef_core::step::LoweredStep
impl core::marker::UnsafeUnpin for proef_core::step::LoweredStep
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::step::LoweredStep
impl core::panic::unwind_safe::UnwindSafe for proef_core::step::LoweredStep
pub struct proef_core::step::Retry
pub proef_core::step::Retry::count: u32
pub proef_core::step::Retry::interval_ms: u64
impl core::clone::Clone for proef_core::step::Retry
pub fn proef_core::step::Retry::clone(&self) -> proef_core::step::Retry
impl core::cmp::Eq for proef_core::step::Retry
impl core::cmp::PartialEq for proef_core::step::Retry
pub fn proef_core::step::Retry::eq(&self, &proef_core::step::Retry) -> bool
impl core::fmt::Debug for proef_core::step::Retry
pub fn proef_core::step::Retry::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Copy for proef_core::step::Retry
impl core::marker::StructuralPartialEq for proef_core::step::Retry
impl serde_core::ser::Serialize for proef_core::step::Retry
pub fn proef_core::step::Retry::serialize<__S>(&self, __S) -> core::result::Result<<__S as serde_core::ser::Serializer>::Ok, <__S as serde_core::ser::Serializer>::Error> where __S: serde_core::ser::Serializer
impl<'de> serde_core::de::Deserialize<'de> for proef_core::step::Retry
pub fn proef_core::step::Retry::deserialize<__D>(__D) -> core::result::Result<Self, <__D as serde_core::de::Deserializer>::Error> where __D: serde_core::de::Deserializer<'de>
impl core::marker::Freeze for proef_core::step::Retry
impl core::marker::Send for proef_core::step::Retry
impl core::marker::Sync for proef_core::step::Retry
impl core::marker::Unpin for proef_core::step::Retry
impl core::marker::UnsafeUnpin for proef_core::step::Retry
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::step::Retry
impl core::panic::unwind_safe::UnwindSafe for proef_core::step::Retry
pub struct proef_core::step::StepBatch
pub proef_core::step::StepBatch::engine: proef_core::engine::EngineId
pub proef_core::step::StepBatch::index: usize
pub proef_core::step::StepBatch::steps: alloc::vec::Vec<proef_core::step::LoweredStep>
impl core::clone::Clone for proef_core::step::StepBatch
pub fn proef_core::step::StepBatch::clone(&self) -> proef_core::step::StepBatch
impl core::cmp::PartialEq for proef_core::step::StepBatch
pub fn proef_core::step::StepBatch::eq(&self, &proef_core::step::StepBatch) -> bool
impl core::fmt::Debug for proef_core::step::StepBatch
pub fn proef_core::step::StepBatch::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::step::StepBatch
impl core::marker::Freeze for proef_core::step::StepBatch
impl core::marker::Send for proef_core::step::StepBatch
impl core::marker::Sync for proef_core::step::StepBatch
impl core::marker::Unpin for proef_core::step::StepBatch
impl core::marker::UnsafeUnpin for proef_core::step::StepBatch
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::step::StepBatch
impl core::panic::unwind_safe::UnwindSafe for proef_core::step::StepBatch
pub struct proef_core::step::StepKindId(_)
impl proef_core::step::StepKindId
pub fn proef_core::step::StepKindId::as_str(&self) -> &str
impl core::clone::Clone for proef_core::step::StepKindId
pub fn proef_core::step::StepKindId::clone(&self) -> proef_core::step::StepKindId
impl core::cmp::Eq for proef_core::step::StepKindId
impl core::cmp::PartialEq for proef_core::step::StepKindId
pub fn proef_core::step::StepKindId::eq(&self, &proef_core::step::StepKindId) -> bool
impl core::convert::From<&str> for proef_core::step::StepKindId
pub fn proef_core::step::StepKindId::from(&str) -> Self
impl core::fmt::Debug for proef_core::step::StepKindId
pub fn proef_core::step::StepKindId::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for proef_core::step::StepKindId
pub fn proef_core::step::StepKindId::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::hash::Hash for proef_core::step::StepKindId
pub fn proef_core::step::StepKindId::hash<__H: core::hash::Hasher>(&self, &mut __H)
impl core::marker::StructuralPartialEq for proef_core::step::StepKindId
impl serde_core::ser::Serialize for proef_core::step::StepKindId
pub fn proef_core::step::StepKindId::serialize<__S>(&self, __S) -> core::result::Result<<__S as serde_core::ser::Serializer>::Ok, <__S as serde_core::ser::Serializer>::Error> where __S: serde_core::ser::Serializer
impl<'de> serde_core::de::Deserialize<'de> for proef_core::step::StepKindId
pub fn proef_core::step::StepKindId::deserialize<__D>(__D) -> core::result::Result<Self, <__D as serde_core::de::Deserializer>::Error> where __D: serde_core::de::Deserializer<'de>
impl core::marker::Freeze for proef_core::step::StepKindId
impl core::marker::Send for proef_core::step::StepKindId
impl core::marker::Sync for proef_core::step::StepKindId
impl core::marker::Unpin for proef_core::step::StepKindId
impl core::marker::UnsafeUnpin for proef_core::step::StepKindId
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::step::StepKindId
impl core::panic::unwind_safe::UnwindSafe for proef_core::step::StepKindId
pub struct proef_core::step::StepOutcome
pub proef_core::step::StepOutcome::attempt_details: alloc::vec::Vec<alloc::string::String>
pub proef_core::step::StepOutcome::attempts: u32
pub proef_core::step::StepOutcome::detail: core::option::Option<alloc::string::String>
pub proef_core::step::StepOutcome::duration: core::time::Duration
pub proef_core::step::StepOutcome::reproduce_hint: core::option::Option<alloc::string::String>
pub proef_core::step::StepOutcome::status: proef_core::step::Status
pub proef_core::step::StepOutcome::step: proef_core::step::StepRef
impl core::clone::Clone for proef_core::step::StepOutcome
pub fn proef_core::step::StepOutcome::clone(&self) -> proef_core::step::StepOutcome
impl core::fmt::Debug for proef_core::step::StepOutcome
pub fn proef_core::step::StepOutcome::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::step::StepOutcome
impl core::marker::Send for proef_core::step::StepOutcome
impl core::marker::Sync for proef_core::step::StepOutcome
impl core::marker::Unpin for proef_core::step::StepOutcome
impl core::marker::UnsafeUnpin for proef_core::step::StepOutcome
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::step::StepOutcome
impl core::panic::unwind_safe::UnwindSafe for proef_core::step::StepOutcome
pub struct proef_core::step::StepRef
pub proef_core::step::StepRef::file: alloc::sync::Arc<str>
pub proef_core::step::StepRef::line: usize
pub proef_core::step::StepRef::text: alloc::sync::Arc<str>
impl core::clone::Clone for proef_core::step::StepRef
pub fn proef_core::step::StepRef::clone(&self) -> proef_core::step::StepRef
impl core::cmp::Eq for proef_core::step::StepRef
impl core::cmp::PartialEq for proef_core::step::StepRef
pub fn proef_core::step::StepRef::eq(&self, &proef_core::step::StepRef) -> bool
impl core::fmt::Debug for proef_core::step::StepRef
pub fn proef_core::step::StepRef::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::step::StepRef
impl serde_core::ser::Serialize for proef_core::step::StepRef
pub fn proef_core::step::StepRef::serialize<__S>(&self, __S) -> core::result::Result<<__S as serde_core::ser::Serializer>::Ok, <__S as serde_core::ser::Serializer>::Error> where __S: serde_core::ser::Serializer
impl<'de> serde_core::de::Deserialize<'de> for proef_core::step::StepRef
pub fn proef_core::step::StepRef::deserialize<__D>(__D) -> core::result::Result<Self, <__D as serde_core::de::Deserializer>::Error> where __D: serde_core::de::Deserializer<'de>
impl core::marker::Freeze for proef_core::step::StepRef
impl core::marker::Send for proef_core::step::StepRef
impl core::marker::Sync for proef_core::step::StepRef
impl core::marker::Unpin for proef_core::step::StepRef
impl core::marker::UnsafeUnpin for proef_core::step::StepRef
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::step::StepRef
impl core::panic::unwind_safe::UnwindSafe for proef_core::step::StepRef
pub mod proef_core::tags
pub enum proef_core::tags::TagExpr
pub proef_core::tags::TagExpr::And(alloc::boxed::Box<proef_core::tags::TagExpr>, alloc::boxed::Box<proef_core::tags::TagExpr>)
pub proef_core::tags::TagExpr::Not(alloc::boxed::Box<proef_core::tags::TagExpr>)
pub proef_core::tags::TagExpr::Or(alloc::boxed::Box<proef_core::tags::TagExpr>, alloc::boxed::Box<proef_core::tags::TagExpr>)
pub proef_core::tags::TagExpr::Tag(alloc::string::String)
impl proef_core::tags::TagExpr
pub fn proef_core::tags::TagExpr::eval(&self, &[alloc::string::String]) -> bool
impl core::clone::Clone for proef_core::tags::TagExpr
pub fn proef_core::tags::TagExpr::clone(&self) -> proef_core::tags::TagExpr
impl core::cmp::Eq for proef_core::tags::TagExpr
impl core::cmp::PartialEq for proef_core::tags::TagExpr
pub fn proef_core::tags::TagExpr::eq(&self, &proef_core::tags::TagExpr) -> bool
impl core::fmt::Debug for proef_core::tags::TagExpr
pub fn proef_core::tags::TagExpr::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::tags::TagExpr
impl core::marker::Freeze for proef_core::tags::TagExpr
impl core::marker::Send for proef_core::tags::TagExpr
impl core::marker::Sync for proef_core::tags::TagExpr
impl core::marker::Unpin for proef_core::tags::TagExpr
impl core::marker::UnsafeUnpin for proef_core::tags::TagExpr
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::tags::TagExpr
impl core::panic::unwind_safe::UnwindSafe for proef_core::tags::TagExpr
pub fn proef_core::tags::parse(&str) -> core::result::Result<proef_core::tags::TagExpr, alloc::string::String>
pub mod proef_core::world
pub enum proef_core::world::Value
pub proef_core::world::Value::Bool(bool)
pub proef_core::world::Value::Float(f64)
pub proef_core::world::Value::Int(i64)
pub proef_core::world::Value::Null
pub proef_core::world::Value::String(alloc::string::String)
impl core::clone::Clone for proef_core::world::Value
pub fn proef_core::world::Value::clone(&self) -> proef_core::world::Value
impl core::cmp::PartialEq for proef_core::world::Value
pub fn proef_core::world::Value::eq(&self, &proef_core::world::Value) -> bool
impl core::fmt::Debug for proef_core::world::Value
pub fn proef_core::world::Value::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::fmt::Display for proef_core::world::Value
pub fn proef_core::world::Value::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::world::Value
impl serde_core::ser::Serialize for proef_core::world::Value
pub fn proef_core::world::Value::serialize<__S>(&self, __S) -> core::result::Result<<__S as serde_core::ser::Serializer>::Ok, <__S as serde_core::ser::Serializer>::Error> where __S: serde_core::ser::Serializer
impl<'de> serde_core::de::Deserialize<'de> for proef_core::world::Value
pub fn proef_core::world::Value::deserialize<D>(D) -> core::result::Result<Self, <D as serde_core::de::Deserializer>::Error> where D: serde_core::de::Deserializer<'de>
impl core::marker::Freeze for proef_core::world::Value
impl core::marker::Send for proef_core::world::Value
impl core::marker::Sync for proef_core::world::Value
impl core::marker::Unpin for proef_core::world::Value
impl core::marker::UnsafeUnpin for proef_core::world::Value
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::world::Value
impl core::panic::unwind_safe::UnwindSafe for proef_core::world::Value
pub struct proef_core::world::GlobalStore
impl proef_core::world::GlobalStore
pub fn proef_core::world::GlobalStore::get(&self, &str) -> core::option::Option<&proef_core::world::Value>
pub fn proef_core::world::GlobalStore::insert(&mut self, impl core::convert::Into<alloc::string::String>, proef_core::world::Value)
pub fn proef_core::world::GlobalStore::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &proef_core::world::Value)>
pub fn proef_core::world::GlobalStore::load(&std::path::Path) -> core::result::Result<Self, proef_core::error::CoreError>
pub fn proef_core::world::GlobalStore::new() -> Self
pub fn proef_core::world::GlobalStore::save(&self, &std::path::Path) -> core::result::Result<(), proef_core::error::CoreError>
impl core::clone::Clone for proef_core::world::GlobalStore
pub fn proef_core::world::GlobalStore::clone(&self) -> proef_core::world::GlobalStore
impl core::cmp::PartialEq for proef_core::world::GlobalStore
pub fn proef_core::world::GlobalStore::eq(&self, &proef_core::world::GlobalStore) -> bool
impl core::default::Default for proef_core::world::GlobalStore
pub fn proef_core::world::GlobalStore::default() -> proef_core::world::GlobalStore
impl core::fmt::Debug for proef_core::world::GlobalStore
pub fn proef_core::world::GlobalStore::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::StructuralPartialEq for proef_core::world::GlobalStore
impl core::marker::Freeze for proef_core::world::GlobalStore
impl core::marker::Send for proef_core::world::GlobalStore
impl core::marker::Sync for proef_core::world::GlobalStore
impl core::marker::Unpin for proef_core::world::GlobalStore
impl core::marker::UnsafeUnpin for proef_core::world::GlobalStore
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::world::GlobalStore
impl core::panic::unwind_safe::UnwindSafe for proef_core::world::GlobalStore
pub struct proef_core::world::World
impl proef_core::world::World
pub fn proef_core::world::World::get(&self, &str) -> core::option::Option<&proef_core::world::Value>
pub fn proef_core::world::World::global(&self) -> &proef_core::world::GlobalStore
pub fn proef_core::world::World::merged(&self) -> alloc::collections::btree::map::BTreeMap<&str, &proef_core::world::Value>
pub fn proef_core::world::World::new(proef_core::world::GlobalStore) -> Self
pub fn proef_core::world::World::promotions(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &proef_core::world::Value)>
pub fn proef_core::world::World::set(&mut self, impl core::convert::Into<alloc::string::String>, proef_core::world::Value)
pub fn proef_core::world::World::set_global(&mut self, impl core::convert::Into<alloc::string::String>, proef_core::world::Value)
impl core::default::Default for proef_core::world::World
pub fn proef_core::world::World::default() -> proef_core::world::World
impl core::fmt::Debug for proef_core::world::World
pub fn proef_core::world::World::fmt(&self, &mut core::fmt::Formatter<'_>) -> core::fmt::Result
impl core::marker::Freeze for proef_core::world::World
impl core::marker::Send for proef_core::world::World
impl core::marker::Sync for proef_core::world::World
impl core::marker::Unpin for proef_core::world::World
impl core::marker::UnsafeUnpin for proef_core::world::World
impl core::panic::unwind_safe::RefUnwindSafe for proef_core::world::World
impl core::panic::unwind_safe::UnwindSafe for proef_core::world::World