1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
use crate::NumberOrString;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Capabilities {
/**
* The debug adapter supports the 'configurationDone' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_configuration_done_request: Option<bool>,
/**
* The debug adapter supports function breakpoints.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_function_breakpoints: Option<bool>,
/**
* The debug adapter supports conditional breakpoints.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_conditional_breakpoints: Option<bool>,
/**
* The debug adapter supports breakpoints that break execution after a
* specified number of hits.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_hit_conditional_breakpoints: Option<bool>,
/**
* The debug adapter supports a (side effect free) evaluate request for data
* hovers.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_evaluate_for_hovers: Option<bool>,
/**
* Available exception filter options for the 'setExceptionBreakpoints'
* request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub exception_breakpoint_filters: Option<Vec<ExceptionBreakpointsFilter>>,
/**
* The debug adapter supports stepping back via the 'stepBack' and
* 'reverseContinue' requests.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_step_back: Option<bool>,
/**
* The debug adapter supports setting a variable to a value.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_set_variable: Option<bool>,
/**
* The debug adapter supports restarting a frame.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_restart_frame: Option<bool>,
/**
* The debug adapter supports the 'gotoTargets' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_goto_targets_request: Option<bool>,
/**
* The debug adapter supports the 'stepInTargets' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_step_in_targets_request: Option<bool>,
/**
* The debug adapter supports the 'completions' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_completions_request: Option<bool>,
/**
* The set of characters that should trigger completion in a REPL. If not
* specified, the UI should assume the '.' character.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub completion_trigger_characters: Option<Vec<String>>,
/**
* The debug adapter supports the 'modules' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_modules_request: Option<bool>,
/**
* The set of additional module information exposed by the debug adapter.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub additional_module_columns: Option<Vec<ColumnDescriptor>>,
/**
* Checksum algorithms supported by the debug adapter.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supported_checksum_algorithms: Option<Vec<ChecksumAlgorithm>>,
/**
* The debug adapter supports the 'restart' request. In this case a client
* should not implement 'restart' by terminating and relaunching the adapter
* but by calling the RestartRequest.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_restart_request: Option<bool>,
/**
* The debug adapter supports 'exceptionOptions' on the
* setExceptionBreakpoints request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_exception_options: Option<bool>,
/**
* The debug adapter supports a 'format' attribute on the stackTraceRequest,
* variablesRequest, and evaluateRequest.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_value_formatting_options: Option<bool>,
/**
* The debug adapter supports the 'exceptionInfo' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_exception_info_request: Option<bool>,
/**
* The debug adapter supports the 'terminateDebuggee' attribute on the
* 'disconnect' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub support_terminate_debuggee: Option<bool>,
/**
* The debug adapter supports the 'suspendDebuggee' attribute on the
* 'disconnect' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub support_suspend_debuggee: Option<bool>,
/**
* The debug adapter supports the delayed loading of parts of the stack, which
* requires that both the 'startFrame' and 'levels' arguments and an optional
* 'totalFrames' result of the 'StackTrace' request are supported.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_delayed_stack_trace_loading: Option<bool>,
/**
* The debug adapter supports the 'loadedSources' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_loaded_sources_request: Option<bool>,
/**
* The debug adapter supports logpoints by interpreting the 'logMessage'
* attribute of the SourceBreakpoint.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_log_points: Option<bool>,
/**
* The debug adapter supports the 'terminateThreads' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_terminate_threads_request: Option<bool>,
/**
* The debug adapter supports the 'setExpression' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_set_expression: Option<bool>,
/**
* The debug adapter supports the 'terminate' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_terminate_request: Option<bool>,
/**
* The debug adapter supports data breakpoints.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_data_breakpoints: Option<bool>,
/**
* The debug adapter supports the 'readMemory' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_read_memory_request: Option<bool>,
/**
* The debug adapter supports the 'writeMemory' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_write_memory_request: Option<bool>,
/**
* The debug adapter supports the 'disassemble' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_disassemble_request: Option<bool>,
/**
* The debug adapter supports the 'cancel' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_cancel_request: Option<bool>,
/**
* The debug adapter supports the 'breakpointLocations' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_breakpoint_locations_request: Option<bool>,
/**
* The debug adapter supports the 'clipboard' context value in the 'evaluate'
* request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_clipboard_context: Option<bool>,
/**
* The debug adapter supports stepping granularities (argument 'granularity')
* for the stepping requests.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_stepping_granularity: Option<bool>,
/**
* The debug adapter supports adding breakpoints based on instruction
* references.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_instruction_breakpoints: Option<bool>,
/**
* The debug adapter supports 'filterOptions' as an argument on the
* 'setExceptionBreakpoints' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_exception_filter_options: Option<bool>,
/**
* The debug adapter supports the 'singleThread' property on the execution
* requests ('continue', 'next', 'stepIn', 'stepOut', 'reverseContinue',
* 'stepBack').
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_single_thread_execution_requests: Option<bool>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ExceptionBreakpointsFilter {
/**
* The internal ID of the filter option. This value is passed to the
* 'setExceptionBreakpoints' request.
*/
pub filter: String,
/**
* The name of the filter option. This will be shown in the UI.
*/
pub label: String,
/**
* An optional help text providing additional information about the exception
* filter. This String is typically shown as a hover and must be translated.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
/**
* Initial value of the filter option. If not specified a value 'false' is
* assumed.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub default: Option<bool>,
/**
* Controls whether a condition can be specified for this filter option. If
* false or missing, a condition can not be set.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub supports_condition: Option<bool>,
/**
* An optional help text providing information about the condition. This
* String is shown as the placeholder text for a text box and must be
* translated.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub condition_description: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Message {
/**
* Unique identifier for the message.
*/
pub id: i32,
/**
* A format String for the message. Embedded variables have the form '{name}'.
* If variable name starts with an underscore character, the variable does not
* contain user data (PII) and can be safely used for telemetry purposes.
*/
pub format: String,
/**
* An object used as a dictionary for looking up the variables in the format
* String.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub variables: Option<HashMap<String, String>>,
/**
* If true send to telemetry.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub send_telemetry: Option<bool>,
/**
* If true show user.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub show_user: Option<bool>,
/**
* An optional url where additional information about this message can be
* found.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
/**
* An optional label that is presented to the user as the UI for opening the
* url.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub url_label: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Module {
/**
* Unique identifier for the module.
*/
pub id: NumberOrString,
/**
* A name of the module.
*/
pub name: String,
/**
* optional but recommended attributes.
* always try to use these first before introducing additional attributes.
*
* Logical full path to the module. The exact definition is implementation
* defined, but usually this would be a full path to the on-disk file for the
* module.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub path: Option<String>,
/**
* True if the module is optimized.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub is_optimized: Option<bool>,
/**
* True if the module is considered 'user code' by a debugger that supports
* 'Just My Code'.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub is_user_code: Option<bool>,
/**
* Version of Module.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub version: Option<String>,
/**
* User understandable description of if symbols were found for the module
* (ex: 'Symbols Loaded', 'Symbols not found', etc.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub symbol_status: Option<String>,
/**
* Logical full path to the symbol file. The exact definition is
* implementation defined.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub symbol_file_path: Option<String>,
/**
* Module created or modified.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub date_time_stamp: Option<String>,
/**
* Address range covered by this module.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub address_range: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "lowercase")]
pub enum ColumnType {
String,
Number,
Boolean,
#[serde(rename = "unixTimestampUTC")]
UnixTimestampUTC,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ColumnDescriptor {
/**
* Name of the attribute rendered in this column.
*/
pub attribute_name: String,
/**
* Header UI label of column.
*/
pub label: String,
/**
* Format to use for the rendered values in this column. TBD how the format
* Strings looks like.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub format: Option<String>,
/**
* Datatype of values in this column. Defaults to 'String' if not specified.
* Values: 'String', 'number', 'boolean', 'unixTimestampUTC', etc.
*/
#[serde(rename = "type")]
#[serde(skip_serializing_if = "Option::is_none")]
pub column_type: Option<ColumnType>,
/**
* Width of this column in characters (hint only).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub width: Option<i32>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ModulesViewDescriptor {
pub columns: Vec<ColumnDescriptor>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Thread {
/**
* Unique identifier for the thread.
*/
pub id: i32,
/**
* A name of the thread.
*/
pub name: String,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "lowercase")]
pub enum PresentationHint {
Normal,
Emphasize,
Deemphasize,
Label,
Subtle,
Arguments,
Locals,
Registers,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Source {
/**
* The short name of the source. Every source returned from the debug adapter
* has a name.
* When sending a source to the debug adapter this name is optional.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
/**
* The path of the source to be shown in the UI.
* It is only used to locate and load the content of the source if no
* sourceReference is specified (or its value is 0).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub path: Option<String>,
/**
* If sourceReference > 0 the contents of the source must be retrieved through
* the SourceRequest (even if a path is specified).
* A sourceReference is only valid for a session, so it must not be used to
* persist a source.
* The value should be less than or equal to 2147483647 (2^31-1).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub source_reference: Option<i32>,
/**
* An optional hint for how to present the source in the UI.
* A value of 'deemphasize' can be used to indicate that the source is not
* available or that it is skipped on stepping.
* Values: 'normal', 'emphasize', 'deemphasize', etc.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub presentation_hint: Option<PresentationHint>,
/**
* The (optional) origin of this source: possible values 'internal module',
* 'inlined content from source map', etc.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub origin: Option<String>,
/**
* An optional list of sources that are related to this source. These may be
* the source that generated this source.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub sources: Option<Vec<Source>>,
/**
* Optional data that a debug adapter might want to loop through the client.
* The client should leave the data intact and persist it across sessions. The
* client should not interpret the data.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub adapter_data: Option<String>,
/**
* The checksums associated with this file.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub checksums: Option<Vec<Checksum>>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct StackFrame {
/**
* An identifier for the stack frame. It must be unique across all threads.
* This id can be used to retrieve the scopes of the frame with the
* 'scopesRequest' or to restart the execution of a stackframe.
*/
pub id: i32,
/**
* The name of the stack frame, typically a method name.
*/
pub name: String,
/**
* The optional source of the frame.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub source: Option<Source>,
/**
* The line within the file of the frame. If source is null or doesn't exist,
* line is 0 and must be ignored.
*/
pub line: u32,
/**
* The column within the line. If source is null or doesn't exist, column is 0
* and must be ignored.
*/
pub column: u32,
/**
* An optional end line of the range covered by the stack frame.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_line: Option<u32>,
/**
* An optional end column of the range covered by the stack frame.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_column: Option<u32>,
/**
* Indicates whether this frame can be restarted with the 'restart' request.
* Clients should only use this if the debug adapter supports the 'restart'
* request (capability 'supportsRestartRequest' is true).
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub can_restart: Option<bool>,
/**
* Optional memory reference for the current instruction pointer in this
* frame.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub instruction_pointer_reference: Option<String>,
/**
* The module associated with this frame, if any.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub module_id: Option<NumberOrString>,
/**
* An optional hint for how to present this frame in the UI.
* A value of 'label' can be used to indicate that the frame is an artificial
* frame that is used as a visual label or separator. A value of 'subtle' can
* be used to change the appearance of a frame in a 'subtle' way.
* Values: 'normal', 'label', 'subtle', etc.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub presentation_hint: Option<PresentationHint>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Scope {
/**
* Name of the scope such as 'Arguments', 'Locals', or 'Registers'. This
* String is shown in the UI as is and can be translated.
*/
pub name: String,
/**
* An optional hint for how to present this scope in the UI. If this attribute
* is missing, the scope is shown with a generic UI.
* Values:
* 'arguments': Scope contains method arguments.
* 'locals': Scope contains local variables.
* 'registers': Scope contains registers. Only a single 'registers' scope
* should be returned from a 'scopes' request.
* etc.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub presentation_hint: Option<PresentationHint>,
/**
* The variables of this scope can be retrieved by passing the value of
* variablesReference to the VariablesRequest.
*/
pub variables_reference: i32,
/**
* The number of named variables in this scope.
* The client can use this optional information to present the variables in a
* paged UI and fetch them in chunks.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub named_variables: Option<usize>,
/**
* The number of indexed variables in this scope.
* The client can use this optional information to present the variables in a
* paged UI and fetch them in chunks.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub indexed_variables: Option<usize>,
/**
* If true, the number of variables in this scope is large or expensive to
* retrieve.
*/
pub expensive: bool,
/**
* Optional source for this scope.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub source: Option<Source>,
/**
* Optional start line of the range covered by this scope.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub line: Option<i32>,
/**
* Optional start column of the range covered by this scope.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub column: Option<i32>,
/**
* Optional end line of the range covered by this scope.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_line: Option<i32>,
/**
* Optional end column of the range covered by this scope.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_column: Option<i32>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Variable {
/**
* The variable's name.
*/
pub name: String,
/**
* The variable's value.
* This can be a multi-line text, e.g. for a function the body of a function.
* For structured variables (which do not have a simple value), it is
* recommended to provide a one line representation of the structured object.
* This helps to identify the structured object in the collapsed state when
* its children are not yet visible.
* An empty String can be used if no value should be shown in the UI.
*/
pub value: String,
/**
* The type of the variable's value. Typically shown in the UI when hovering
* over the value.
* This attribute should only be returned by a debug adapter if the client has
* passed the value true for the 'supportsVariableType' capability of the
* 'initialize' request.
*/
#[serde(rename = "type")]
#[serde(skip_serializing_if = "Option::is_none")]
pub var_type: Option<String>,
/**
* Properties of a variable that can be used to determine how to render the
* variable in the UI.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub presentation_hint: Option<VariablePresentationHint>,
/**
* Optional evaluatable name of this variable which can be passed to the
* 'EvaluateRequest' to fetch the variable's value.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub evaluate_name: Option<String>,
/**
* If variablesReference is > 0, the variable is structured and its children
* can be retrieved by passing variablesReference to the VariablesRequest.
*/
pub variables_reference: i32,
/**
* The number of named child variables.
* The client can use this optional information to present the children in a
* paged UI and fetch them in chunks.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub named_variables: Option<i32>,
/**
* The number of indexed child variables.
* The client can use this optional information to present the children in a
* paged UI and fetch them in chunks.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub indexed_variables: Option<i32>,
/**
* Optional memory reference for the variable if the variable represents
* executable code, such as a function pointer.
* This attribute is only required if the client has passed the value true for
* the 'supportsMemoryReferences' capability of the 'initialize' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub memory_reference: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum VariableKind {
Property,
Method,
Class,
Data,
Event,
BaseClass,
InnerClass,
Interface,
MostDerivedClass,
Virtual,
DataBreakpoint,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum VariableAttribute {
Static,
Constant,
ReadOnly,
RawString,
HasObjectId,
CanHaveObjectId,
HasSideEffects,
HasDataBreakpoint,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum Visibility {
Public,
Private,
Protected,
Internal,
Final,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct VariablePresentationHint {
/**
* The kind of variable. Before introducing additional values, try to use the
* listed values.
* Values:
* 'property': Indicates that the object is a property.
* 'method': Indicates that the object is a method.
* 'class': Indicates that the object is a class.
* 'data': Indicates that the object is data.
* 'event': Indicates that the object is an event.
* 'baseClass': Indicates that the object is a base class.
* 'innerClass': Indicates that the object is an inner class.
* 'pub struct': Indicates that the object is an interface.
* 'mostDerivedClass': Indicates that the object is the most derived class.
* 'virtual': Indicates that the object is virtual, that means it is a
* synthetic object introducedby the
* adapter for rendering purposes, e.g. an index range for large arrays.
* 'dataBreakpoint': Deprecated: Indicates that a data breakpoint is
* registered for the object. The 'hasDataBreakpoint' attribute should
* generally be used instead.
* etc.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub kind: Option<VariableKind>,
/**
* Set of attributes represented as an array of Strings. Before introducing
* additional values, try to use the listed values.
* Values:
* 'static': Indicates that the object is static.
* 'constant': Indicates that the object is a constant.
* 'readOnly': Indicates that the object is read only.
* 'rawString': Indicates that the object is a raw String.
* 'hasObjectId': Indicates that the object can have an Object ID created for
* it.
* 'canHaveObjectId': Indicates that the object has an Object ID associated
* with it.
* 'hasSideEffects': Indicates that the evaluation had side effects.
* 'hasDataBreakpoint': Indicates that the object has its value tracked by a
* data breakpoint.
* etc.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub attributes: Option<Vec<VariableAttribute>>,
/**
* Visibility of variable. Before introducing additional values, try to use
* the listed values.
* Values: 'public', 'private', 'protected', 'internal', 'final', etc.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub visibility: Option<Visibility>,
/**
* If true, clients can present the variable with a UI that supports a
* specific gesture to trigger its evaluation.
* This mechanism can be used for properties that require executing code when
* retrieving their value and where the code execution can be expensive and/or
* produce side-effects. A typical example are properties based on a getter
* function.
* Please note that in addition to the 'lazy' flag, the variable's
* 'variablesReference' must refer to a variable that will provide the value
* through another 'variable' request.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub lazy: Option<bool>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct BreakpointLocation {
/**
* Start line of breakpoint location.
*/
pub line: i32,
/**
* Optional start column of breakpoint location.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub column: Option<i32>,
/**
* Optional end line of breakpoint location if the location covers a range.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_line: Option<i32>,
/**
* Optional end column of breakpoint location if the location covers a range.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_column: Option<i32>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SourceBreakpoint {
/**
* The source line of the breakpoint or logpoint.
*/
pub line: u32,
/**
* An optional source column of the breakpoint.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub column: Option<u32>,
/**
* An optional expression for conditional breakpoints.
* It is only honored by a debug adapter if the capability
* 'supportsConditionalBreakpoints' is true.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub condition: Option<String>,
/**
* An optional expression that controls how many hits of the breakpoint are
* ignored.
* The backend is expected to interpret the expression as needed.
* The attribute is only honored by a debug adapter if the capability
* 'supportsHitConditionalBreakpoints' is true.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub hit_condition: Option<String>,
/**
* If this attribute exists and is non-empty, the backend must not 'break'
* (stop)
* but log the message instead. Expressions within {} are interpolated.
* The attribute is only honored by a debug adapter if the capability
* 'supportsLogPoints' is true.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub log_message: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct FunctionBreakpoint {
/**
* The name of the function.
*/
pub name: String,
/**
* An optional expression for conditional breakpoints.
* It is only honored by a debug adapter if the capability
* 'supportsConditionalBreakpoints' is true.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub condition: Option<String>,
/**
* An optional expression that controls how many hits of the breakpoint are
* ignored.
* The backend is expected to interpret the expression as needed.
* The attribute is only honored by a debug adapter if the capability
* 'supportsHitConditionalBreakpoints' is true.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub hit_condition: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum DataBreakpointAccessType {
Read,
Write,
ReadWrite,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct DataBreakpoint {
/**
* An id representing the data. This id is returned from the
* dataBreakpointInfo request.
*/
pub data_id: String,
/**
* The access type of the data.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub access_type: Option<DataBreakpointAccessType>,
/**
* An optional expression for conditional breakpoints.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub condition: Option<String>,
/**
* An optional expression that controls how many hits of the breakpoint are
* ignored.
* The backend is expected to interpret the expression as needed.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub hit_condition: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct InstructionBreakpoint {
/**
* The instruction reference of the breakpoint.
* This should be a memory or instruction pointer reference from an
* EvaluateResponse, Variable, StackFrame, GotoTarget, or Breakpoint.
*/
pub instruction_reference: String,
/**
* An optional offset from the instruction reference.
* This can be negative.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub offset: Option<i32>,
/**
* An optional expression for conditional breakpoints.
* It is only honored by a debug adapter if the capability
* 'supportsConditionalBreakpoints' is true.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub condition: Option<String>,
/**
* An optional expression that controls how many hits of the breakpoint are
* ignored.
* The backend is expected to interpret the expression as needed.
* The attribute is only honored by a debug adapter if the capability
* 'supportsHitConditionalBreakpoints' is true.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub hit_condition: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Breakpoint {
/**
* An optional identifier for the breakpoint. It is needed if breakpoint
* events are used to update or remove breakpoints.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub id: Option<usize>,
/**
* If true breakpoint could be set (but not necessarily at the desired
* location).
*/
pub verified: bool,
/**
* An optional message about the state of the breakpoint.
* This is shown to the user and can be used to explain why a breakpoint could
* not be verified.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub message: Option<String>,
/**
* The source where the breakpoint is located.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub source: Option<Source>,
/**
* The start line of the actual range covered by the breakpoint.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub line: Option<u32>,
/**
* An optional start column of the actual range covered by the breakpoint.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub column: Option<u32>,
/**
* An optional end line of the actual range covered by the breakpoint.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_line: Option<u32>,
/**
* An optional end column of the actual range covered by the breakpoint.
* If no end line is given, then the end column is assumed to be in the start
* line.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_column: Option<u32>,
/**
* An optional memory reference to where the breakpoint is set.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub instruction_reference: Option<String>,
/**
* An optional offset from the instruction reference.
* This can be negative.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub offset: Option<i32>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum SteppingGranularity {
Statement,
Line,
Instruction,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct StepInTarget {
/**
* Unique identifier for a stepIn target.
*/
pub id: i32,
/**
* The name of the stepIn target (shown in the UI).
*/
pub label: String,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct GotoTarget {
/**
* Unique identifier for a goto target. This is used in the goto request.
*/
pub id: i32,
/**
* The name of the goto target (shown in the UI).
*/
pub label: String,
/**
* The line of the goto target.
*/
pub line: i32,
/**
* An optional column of the goto target.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub column: Option<i32>,
/**
* An optional end line of the range covered by the goto target.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_line: Option<i32>,
/**
* An optional end column of the range covered by the goto target.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_column: Option<i32>,
/**
* Optional memory reference for the instruction pointer value represented by
* this target.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub instruction_pointer_reference: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct CompletionItem {
/**
* The label of this completion item. By default this is also the text that is
* inserted when selecting this completion.
*/
pub label: String,
/**
* If text is not falsy then it is inserted instead of the label.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub text: Option<String>,
/**
* A String that should be used when comparing this item with other items.
* When `falsy` the label is used.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub sort_text: Option<String>,
/**
* A human-readable String with additional information about this item, like
* type or symbol information.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub detail: Option<String>,
/**
* The item's type. Typically the client uses this information to render the
* item in the UI with an icon.
*/
#[serde(rename = "type")]
#[serde(skip_serializing_if = "Option::is_none")]
pub item_type: Option<CompletionItemType>,
/**
* This value determines the location (in the CompletionsRequest's 'text'
* attribute) where the completion text is added.
* If missing the text is added at the location specified by the
* CompletionsRequest's 'column' attribute.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub start: Option<i32>,
/**
* This value determines how many characters are overwritten by the completion
* text.
* If missing the value 0 is assumed which results in the completion text
* being inserted.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub length: Option<i32>,
/**
* Determines the start of the new selection after the text has been inserted
* (or replaced).
* The start position must in the range 0 and length of the completion text.
* If omitted the selection starts at the end of the completion text.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub selection_start: Option<i32>,
/**
* Determines the length of the new selection after the text has been inserted
* (or replaced).
* The selection can not extend beyond the bounds of the completion text.
* If omitted the length is assumed to be 0.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub selection_length: Option<i32>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum CompletionItemType {
Method,
Function,
Constructor,
Field,
Variable,
Class,
Interface,
Module,
Property,
Unit,
Value,
Enum,
Keyword,
Snippet,
Text,
Color,
File,
Reference,
Customcolor,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
pub enum ChecksumAlgorithm {
MD5,
SHA1,
SHA256,
#[serde(rename = "timestamp")]
Timestamp,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Checksum {
/**
* The algorithm used to calculate this checksum.
*/
pub algorithm: ChecksumAlgorithm,
/**
* Value of the checksum.
*/
pub checksum: String,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ValueFormat {
/**
* Display the value in hex.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub hex: Option<bool>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct StackFrameFormat {
/**
* Display the value in hex.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub hex: Option<bool>,
/**
* Displays parameters for the stack frame.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub parameters: Option<bool>,
/**
* Displays the types of parameters for the stack frame.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub parameter_types: Option<bool>,
/**
* Displays the names of parameters for the stack frame.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub parameter_names: Option<bool>,
/**
* Displays the values of parameters for the stack frame.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub parameter_values: Option<bool>,
/**
* Displays the line number of the stack frame.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub line: Option<bool>,
/**
* Displays the module of the stack frame.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub module: Option<bool>,
/**
* Includes all stack frames, including those the debug adapter might
* otherwise hide.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub include_all: Option<bool>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ExceptionFilterOptions {
/**
* ID of an exception filter returned by the 'exceptionBreakpointFilters'
* capability.
*/
pub filter_id: String,
/**
* An optional expression for conditional exceptions.
* The exception will break into the debugger if the result of the condition
* is true.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub condition: Option<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ExceptionOptions {
/**
* A path that selects a single or multiple exceptions in a tree. If 'path' is
* missing, the whole tree is selected.
* By convention the first segment of the path is a category that is used to
* group exceptions in the UI.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub path: Option<Vec<ExceptionPathSegment>>,
/**
* Condition when a thrown exception should result in a break.
*/
pub break_mode: ExceptionBreakMode,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum ExceptionBreakMode {
Never,
Always,
Unhandled,
UserUnhandled,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ExceptionPathSegment {
/**
* If false or missing this segment matches the names provided, otherwise it
* matches anything except the names provided.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub negate: Option<bool>,
/**
* Depending on the value of 'negate' the names that should match or not
* match.
*/
pub names: Vec<String>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ExceptionDetails {
/**
* Message contained in the exception.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub message: Option<String>,
/**
* Short type name of the exception object.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub type_name: Option<String>,
/**
* Fully-qualified type name of the exception object.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub full_type_name: Option<String>,
/**
* Optional expression that can be evaluated in the current scope to obtain
* the exception object.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub evaluate_name: Option<String>,
/**
* Stack trace at the time the exception was thrown.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub stack_trace: Option<String>,
/**
* Details of the exception contained by this exception, if any.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub inner_exception: Option<Vec<ExceptionDetails>>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct DisassembledInstruction {
/**
* The address of the instruction. Treated as a hex value if prefixed with
* '0x', or as a decimal value otherwise.
*/
pub address: String,
/**
* Optional raw bytes representing the instruction and its operands, in an
* implementation-defined format.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub instruction_bytes: Option<String>,
/**
* Text representing the instruction and its operands, in an
* implementation-defined format.
*/
pub instruction: String,
/**
* Name of the symbol that corresponds with the location of this instruction,
* if any.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub symbol: Option<String>,
/**
* Source location that corresponds to this instruction, if any.
* Should always be set (if available) on the first instruction returned,
* but can be omitted afterwards if this instruction maps to the same source
* file as the previous instruction.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub location: Option<Source>,
/**
* The line within the source location that corresponds to this instruction,
* if any.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub line: Option<i32>,
/**
* The column within the line that corresponds to this instruction, if any.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub column: Option<i32>,
/**
* The end line of the range that corresponds to this instruction, if any.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_line: Option<i32>,
/**
* The end column of the range that corresponds to this instruction, if any.
*/
#[serde(skip_serializing_if = "Option::is_none")]
pub end_column: Option<i32>,
}
#[derive(Debug, Eq, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub enum InvalidatedAreas {
All,
Stacks,
Threads,
Variables,
}