roctogen 0.50.0

Github API and models generated from the official swagger OpenAPI specification
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
//! Method, error and parameter types for the Search endpoint.
#![allow(
    clippy::all
)]
/* 
 * GitHub v3 REST API
 *
 * GitHub's v3 REST API.
 *
 * OpenAPI spec version: 1.1.4
 * 
 * Generated by: https://github.com/swagger-api/swagger-codegen.git
 */

use serde::Deserialize;

use roctokit::adapters::{AdapterError, Client, GitHubRequest, GitHubResponseExt};
use crate::models::*;

use super::PerPage;

use std::collections::HashMap;
use serde_json::value::Value;

pub struct Search<'api, C: Client> where AdapterError: From<<C as Client>::Err> {
    client: &'api C
}

pub fn new<C: Client>(client: &C) -> Search<C> where AdapterError: From<<C as Client>::Err> {
    Search { client }
}

/// Errors for the [Search code](Search::code_async()) endpoint.
#[derive(Debug, thiserror::Error)]
pub enum SearchCodeError {
    #[error("Not modified")]
    Status304,
    #[error("Service unavailable")]
    Status503(GetBillingGetGithubBillingUsageReportUserResponse503),
    #[error("Validation failed, or the endpoint has been spammed.")]
    Status422(ValidationError),
    #[error("Forbidden")]
    Status403(BasicError),
    #[error("Status code: {}", code)]
    Generic { code: u16 },
}

impl From<SearchCodeError> for AdapterError {
    fn from(err: SearchCodeError) -> Self {
        let (description, status_code) = match err {
            SearchCodeError::Status304 => (String::from("Not modified"), 304),
            SearchCodeError::Status503(_) => (String::from("Service unavailable"), 503),
            SearchCodeError::Status422(_) => (String::from("Validation failed, or the endpoint has been spammed."), 422),
            SearchCodeError::Status403(_) => (String::from("Forbidden"), 403),
            SearchCodeError::Generic { code } => (String::from("Generic"), code)
        };

        Self::Endpoint {
            description,
            status_code,
            source: Some(Box::new(err))
        }
    }
}

/// Errors for the [Search commits](Search::commits_async()) endpoint.
#[derive(Debug, thiserror::Error)]
pub enum SearchCommitsError {
    #[error("Not modified")]
    Status304,
    #[error("Status code: {}", code)]
    Generic { code: u16 },
}

impl From<SearchCommitsError> for AdapterError {
    fn from(err: SearchCommitsError) -> Self {
        let (description, status_code) = match err {
            SearchCommitsError::Status304 => (String::from("Not modified"), 304),
            SearchCommitsError::Generic { code } => (String::from("Generic"), code)
        };

        Self::Endpoint {
            description,
            status_code,
            source: Some(Box::new(err))
        }
    }
}

/// Errors for the [Search issues and pull requests](Search::issues_and_pull_requests_async()) endpoint.
#[derive(Debug, thiserror::Error)]
pub enum SearchIssuesAndPullRequestsError {
    #[error("Service unavailable")]
    Status503(GetBillingGetGithubBillingUsageReportUserResponse503),
    #[error("Validation failed, or the endpoint has been spammed.")]
    Status422(ValidationError),
    #[error("Not modified")]
    Status304,
    #[error("Forbidden")]
    Status403(BasicError),
    #[error("Status code: {}", code)]
    Generic { code: u16 },
}

impl From<SearchIssuesAndPullRequestsError> for AdapterError {
    fn from(err: SearchIssuesAndPullRequestsError) -> Self {
        let (description, status_code) = match err {
            SearchIssuesAndPullRequestsError::Status503(_) => (String::from("Service unavailable"), 503),
            SearchIssuesAndPullRequestsError::Status422(_) => (String::from("Validation failed, or the endpoint has been spammed."), 422),
            SearchIssuesAndPullRequestsError::Status304 => (String::from("Not modified"), 304),
            SearchIssuesAndPullRequestsError::Status403(_) => (String::from("Forbidden"), 403),
            SearchIssuesAndPullRequestsError::Generic { code } => (String::from("Generic"), code)
        };

        Self::Endpoint {
            description,
            status_code,
            source: Some(Box::new(err))
        }
    }
}

/// Errors for the [Search labels](Search::labels_async()) endpoint.
#[derive(Debug, thiserror::Error)]
pub enum SearchLabelsError {
    #[error("Not modified")]
    Status304,
    #[error("Resource not found")]
    Status404(BasicError),
    #[error("Forbidden")]
    Status403(BasicError),
    #[error("Validation failed, or the endpoint has been spammed.")]
    Status422(ValidationError),
    #[error("Status code: {}", code)]
    Generic { code: u16 },
}

impl From<SearchLabelsError> for AdapterError {
    fn from(err: SearchLabelsError) -> Self {
        let (description, status_code) = match err {
            SearchLabelsError::Status304 => (String::from("Not modified"), 304),
            SearchLabelsError::Status404(_) => (String::from("Resource not found"), 404),
            SearchLabelsError::Status403(_) => (String::from("Forbidden"), 403),
            SearchLabelsError::Status422(_) => (String::from("Validation failed, or the endpoint has been spammed."), 422),
            SearchLabelsError::Generic { code } => (String::from("Generic"), code)
        };

        Self::Endpoint {
            description,
            status_code,
            source: Some(Box::new(err))
        }
    }
}

/// Errors for the [Search repositories](Search::repos_async()) endpoint.
#[derive(Debug, thiserror::Error)]
pub enum SearchReposError {
    #[error("Service unavailable")]
    Status503(GetBillingGetGithubBillingUsageReportUserResponse503),
    #[error("Validation failed, or the endpoint has been spammed.")]
    Status422(ValidationError),
    #[error("Not modified")]
    Status304,
    #[error("Status code: {}", code)]
    Generic { code: u16 },
}

impl From<SearchReposError> for AdapterError {
    fn from(err: SearchReposError) -> Self {
        let (description, status_code) = match err {
            SearchReposError::Status503(_) => (String::from("Service unavailable"), 503),
            SearchReposError::Status422(_) => (String::from("Validation failed, or the endpoint has been spammed."), 422),
            SearchReposError::Status304 => (String::from("Not modified"), 304),
            SearchReposError::Generic { code } => (String::from("Generic"), code)
        };

        Self::Endpoint {
            description,
            status_code,
            source: Some(Box::new(err))
        }
    }
}

/// Errors for the [Search topics](Search::topics_async()) endpoint.
#[derive(Debug, thiserror::Error)]
pub enum SearchTopicsError {
    #[error("Not modified")]
    Status304,
    #[error("Status code: {}", code)]
    Generic { code: u16 },
}

impl From<SearchTopicsError> for AdapterError {
    fn from(err: SearchTopicsError) -> Self {
        let (description, status_code) = match err {
            SearchTopicsError::Status304 => (String::from("Not modified"), 304),
            SearchTopicsError::Generic { code } => (String::from("Generic"), code)
        };

        Self::Endpoint {
            description,
            status_code,
            source: Some(Box::new(err))
        }
    }
}

/// Errors for the [Search users](Search::users_async()) endpoint.
#[derive(Debug, thiserror::Error)]
pub enum SearchUsersError {
    #[error("Not modified")]
    Status304,
    #[error("Service unavailable")]
    Status503(GetBillingGetGithubBillingUsageReportUserResponse503),
    #[error("Validation failed, or the endpoint has been spammed.")]
    Status422(ValidationError),
    #[error("Status code: {}", code)]
    Generic { code: u16 },
}

impl From<SearchUsersError> for AdapterError {
    fn from(err: SearchUsersError) -> Self {
        let (description, status_code) = match err {
            SearchUsersError::Status304 => (String::from("Not modified"), 304),
            SearchUsersError::Status503(_) => (String::from("Service unavailable"), 503),
            SearchUsersError::Status422(_) => (String::from("Validation failed, or the endpoint has been spammed."), 422),
            SearchUsersError::Generic { code } => (String::from("Generic"), code)
        };

        Self::Endpoint {
            description,
            status_code,
            source: Some(Box::new(err))
        }
    }
}


/// Query parameters for the [Search code](Search::code_async()) endpoint.
#[derive(Default, Serialize)]
pub struct SearchCodeParams<'req> {
    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query). See \"[Searching code](https://docs.github.com/search-github/searching-on-github/searching-code)\" for a detailed list of qualifiers.
    q: &'req str, 
    /// **This field is closing down.** Sorts the results of your query. Can only be `indexed`, which indicates how recently a file has been indexed by the GitHub search infrastructure. Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    sort: Option<&'req str>, 
    /// **This field is closing down.** Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`. 
    order: Option<&'req str>, 
    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    per_page: Option<u16>, 
    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    page: Option<u16>
}

impl<'req> SearchCodeParams<'req> {
    pub fn new() -> Self {
        Self::default()
    }

    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query). See \"[Searching code](https://docs.github.com/search-github/searching-on-github/searching-code)\" for a detailed list of qualifiers.
    pub fn q(self, q: &'req str) -> Self {
        Self {
            q: q,
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// **This field is closing down.** Sorts the results of your query. Can only be `indexed`, which indicates how recently a file has been indexed by the GitHub search infrastructure. Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    pub fn sort(self, sort: &'req str) -> Self {
        Self {
            q: self.q, 
            sort: Some(sort),
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// **This field is closing down.** Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`. 
    pub fn order(self, order: &'req str) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: Some(order),
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn per_page(self, per_page: u16) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: Some(per_page),
            page: self.page, 
        }
    }

    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn page(self, page: u16) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: Some(page),
        }
    }
}

impl<'enc> From<&'enc PerPage> for SearchCodeParams<'enc> {
    fn from(per_page: &'enc PerPage) -> Self {
        Self {
            per_page: Some(per_page.per_page),
            page: Some(per_page.page),
            ..Default::default()
        }
    }
}
/// Query parameters for the [Search commits](Search::commits_async()) endpoint.
#[derive(Default, Serialize)]
pub struct SearchCommitsParams<'req> {
    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query). See \"[Searching commits](https://docs.github.com/search-github/searching-on-github/searching-commits)\" for a detailed list of qualifiers.
    q: &'req str, 
    /// Sorts the results of your query by `author-date` or `committer-date`. Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    sort: Option<&'req str>, 
    /// Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`.
    order: Option<&'req str>, 
    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    per_page: Option<u16>, 
    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    page: Option<u16>
}

impl<'req> SearchCommitsParams<'req> {
    pub fn new() -> Self {
        Self::default()
    }

    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query). See \"[Searching commits](https://docs.github.com/search-github/searching-on-github/searching-commits)\" for a detailed list of qualifiers.
    pub fn q(self, q: &'req str) -> Self {
        Self {
            q: q,
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// Sorts the results of your query by `author-date` or `committer-date`. Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    pub fn sort(self, sort: &'req str) -> Self {
        Self {
            q: self.q, 
            sort: Some(sort),
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`.
    pub fn order(self, order: &'req str) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: Some(order),
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn per_page(self, per_page: u16) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: Some(per_page),
            page: self.page, 
        }
    }

    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn page(self, page: u16) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: Some(page),
        }
    }
}

impl<'enc> From<&'enc PerPage> for SearchCommitsParams<'enc> {
    fn from(per_page: &'enc PerPage) -> Self {
        Self {
            per_page: Some(per_page.per_page),
            page: Some(per_page.page),
            ..Default::default()
        }
    }
}
/// Query parameters for the [Search issues and pull requests](Search::issues_and_pull_requests_async()) endpoint.
#[derive(Default, Serialize)]
pub struct SearchIssuesAndPullRequestsParams<'req> {
    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query). See \"[Searching issues and pull requests](https://docs.github.com/search-github/searching-on-github/searching-issues-and-pull-requests)\" for a detailed list of qualifiers.
    q: &'req str, 
    /// Sorts the results of your query by the number of `comments`, `reactions`, `reactions-+1`, `reactions--1`, `reactions-smile`, `reactions-thinking_face`, `reactions-heart`, `reactions-tada`, or `interactions`. You can also sort results by how recently the items were `created` or `updated`, Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    sort: Option<&'req str>, 
    /// Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`.
    order: Option<&'req str>, 
    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    per_page: Option<u16>, 
    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    page: Option<u16>, 
    /// Set to `true` to use advanced search. Example: `http://api.github.com/search/issues?q={query}&advanced_search=true`
    advanced_search: Option<&'req str>
}

impl<'req> SearchIssuesAndPullRequestsParams<'req> {
    pub fn new() -> Self {
        Self::default()
    }

    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query). See \"[Searching issues and pull requests](https://docs.github.com/search-github/searching-on-github/searching-issues-and-pull-requests)\" for a detailed list of qualifiers.
    pub fn q(self, q: &'req str) -> Self {
        Self {
            q: q,
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
            advanced_search: self.advanced_search, 
        }
    }

    /// Sorts the results of your query by the number of `comments`, `reactions`, `reactions-+1`, `reactions--1`, `reactions-smile`, `reactions-thinking_face`, `reactions-heart`, `reactions-tada`, or `interactions`. You can also sort results by how recently the items were `created` or `updated`, Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    pub fn sort(self, sort: &'req str) -> Self {
        Self {
            q: self.q, 
            sort: Some(sort),
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
            advanced_search: self.advanced_search, 
        }
    }

    /// Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`.
    pub fn order(self, order: &'req str) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: Some(order),
            per_page: self.per_page, 
            page: self.page, 
            advanced_search: self.advanced_search, 
        }
    }

    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn per_page(self, per_page: u16) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: Some(per_page),
            page: self.page, 
            advanced_search: self.advanced_search, 
        }
    }

    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn page(self, page: u16) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: Some(page),
            advanced_search: self.advanced_search, 
        }
    }

    /// Set to `true` to use advanced search. Example: `http://api.github.com/search/issues?q={query}&advanced_search=true`
    pub fn advanced_search(self, advanced_search: &'req str) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
            advanced_search: Some(advanced_search),
        }
    }
}

impl<'enc> From<&'enc PerPage> for SearchIssuesAndPullRequestsParams<'enc> {
    fn from(per_page: &'enc PerPage) -> Self {
        Self {
            per_page: Some(per_page.per_page),
            page: Some(per_page.page),
            ..Default::default()
        }
    }
}
/// Query parameters for the [Search labels](Search::labels_async()) endpoint.
#[derive(Default, Serialize)]
pub struct SearchLabelsParams<'req> {
    /// The id of the repository.
    repository_id: i32, 
    /// The search keywords. This endpoint does not accept qualifiers in the query. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query).
    q: &'req str, 
    /// Sorts the results of your query by when the label was `created` or `updated`. Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    sort: Option<&'req str>, 
    /// Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`.
    order: Option<&'req str>, 
    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    per_page: Option<u16>, 
    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    page: Option<u16>
}

impl<'req> SearchLabelsParams<'req> {
    pub fn new() -> Self {
        Self::default()
    }

    /// The id of the repository.
    pub fn repository_id(self, repository_id: i32) -> Self {
        Self {
            repository_id: repository_id,
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// The search keywords. This endpoint does not accept qualifiers in the query. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query).
    pub fn q(self, q: &'req str) -> Self {
        Self {
            repository_id: self.repository_id, 
            q: q,
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// Sorts the results of your query by when the label was `created` or `updated`. Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    pub fn sort(self, sort: &'req str) -> Self {
        Self {
            repository_id: self.repository_id, 
            q: self.q, 
            sort: Some(sort),
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`.
    pub fn order(self, order: &'req str) -> Self {
        Self {
            repository_id: self.repository_id, 
            q: self.q, 
            sort: self.sort, 
            order: Some(order),
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn per_page(self, per_page: u16) -> Self {
        Self {
            repository_id: self.repository_id, 
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: Some(per_page),
            page: self.page, 
        }
    }

    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn page(self, page: u16) -> Self {
        Self {
            repository_id: self.repository_id, 
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: Some(page),
        }
    }
}

impl<'enc> From<&'enc PerPage> for SearchLabelsParams<'enc> {
    fn from(per_page: &'enc PerPage) -> Self {
        Self {
            per_page: Some(per_page.per_page),
            page: Some(per_page.page),
            ..Default::default()
        }
    }
}
/// Query parameters for the [Search repositories](Search::repos_async()) endpoint.
#[derive(Default, Serialize)]
pub struct SearchReposParams<'req> {
    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query). See \"[Searching for repositories](https://docs.github.com/articles/searching-for-repositories/)\" for a detailed list of qualifiers.
    q: &'req str, 
    /// Sorts the results of your query by number of `stars`, `forks`, or `help-wanted-issues` or how recently the items were `updated`. Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    sort: Option<&'req str>, 
    /// Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`.
    order: Option<&'req str>, 
    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    per_page: Option<u16>, 
    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    page: Option<u16>
}

impl<'req> SearchReposParams<'req> {
    pub fn new() -> Self {
        Self::default()
    }

    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query). See \"[Searching for repositories](https://docs.github.com/articles/searching-for-repositories/)\" for a detailed list of qualifiers.
    pub fn q(self, q: &'req str) -> Self {
        Self {
            q: q,
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// Sorts the results of your query by number of `stars`, `forks`, or `help-wanted-issues` or how recently the items were `updated`. Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    pub fn sort(self, sort: &'req str) -> Self {
        Self {
            q: self.q, 
            sort: Some(sort),
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`.
    pub fn order(self, order: &'req str) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: Some(order),
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn per_page(self, per_page: u16) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: Some(per_page),
            page: self.page, 
        }
    }

    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn page(self, page: u16) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: Some(page),
        }
    }
}

impl<'enc> From<&'enc PerPage> for SearchReposParams<'enc> {
    fn from(per_page: &'enc PerPage) -> Self {
        Self {
            per_page: Some(per_page.per_page),
            page: Some(per_page.page),
            ..Default::default()
        }
    }
}
/// Query parameters for the [Search topics](Search::topics_async()) endpoint.
#[derive(Default, Serialize)]
pub struct SearchTopicsParams<'req> {
    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query).
    q: &'req str, 
    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    per_page: Option<u16>, 
    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    page: Option<u16>
}

impl<'req> SearchTopicsParams<'req> {
    pub fn new() -> Self {
        Self::default()
    }

    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query).
    pub fn q(self, q: &'req str) -> Self {
        Self {
            q: q,
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn per_page(self, per_page: u16) -> Self {
        Self {
            q: self.q, 
            per_page: Some(per_page),
            page: self.page, 
        }
    }

    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn page(self, page: u16) -> Self {
        Self {
            q: self.q, 
            per_page: self.per_page, 
            page: Some(page),
        }
    }
}

impl<'enc> From<&'enc PerPage> for SearchTopicsParams<'enc> {
    fn from(per_page: &'enc PerPage) -> Self {
        Self {
            per_page: Some(per_page.per_page),
            page: Some(per_page.page),
            ..Default::default()
        }
    }
}
/// Query parameters for the [Search users](Search::users_async()) endpoint.
#[derive(Default, Serialize)]
pub struct SearchUsersParams<'req> {
    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query). See \"[Searching users](https://docs.github.com/search-github/searching-on-github/searching-users)\" for a detailed list of qualifiers.
    q: &'req str, 
    /// Sorts the results of your query by number of `followers` or `repositories`, or when the person `joined` GitHub. Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    sort: Option<&'req str>, 
    /// Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`.
    order: Option<&'req str>, 
    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    per_page: Option<u16>, 
    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    page: Option<u16>
}

impl<'req> SearchUsersParams<'req> {
    pub fn new() -> Self {
        Self::default()
    }

    /// The query contains one or more search keywords and qualifiers. Qualifiers allow you to limit your search to specific areas of GitHub. The REST API supports the same qualifiers as the web interface for GitHub. To learn more about the format of the query, see [Constructing a search query](https://docs.github.com/rest/search/search#constructing-a-search-query). See \"[Searching users](https://docs.github.com/search-github/searching-on-github/searching-users)\" for a detailed list of qualifiers.
    pub fn q(self, q: &'req str) -> Self {
        Self {
            q: q,
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// Sorts the results of your query by number of `followers` or `repositories`, or when the person `joined` GitHub. Default: [best match](https://docs.github.com/rest/search/search#ranking-search-results)
    pub fn sort(self, sort: &'req str) -> Self {
        Self {
            q: self.q, 
            sort: Some(sort),
            order: self.order, 
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter is ignored unless you provide `sort`.
    pub fn order(self, order: &'req str) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: Some(order),
            per_page: self.per_page, 
            page: self.page, 
        }
    }

    /// The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn per_page(self, per_page: u16) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: Some(per_page),
            page: self.page, 
        }
    }

    /// The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"
    pub fn page(self, page: u16) -> Self {
        Self {
            q: self.q, 
            sort: self.sort, 
            order: self.order, 
            per_page: self.per_page, 
            page: Some(page),
        }
    }
}

impl<'enc> From<&'enc PerPage> for SearchUsersParams<'enc> {
    fn from(per_page: &'enc PerPage) -> Self {
        Self {
            per_page: Some(per_page.per_page),
            page: Some(per_page.page),
            ..Default::default()
        }
    }
}

impl<'api, C: Client> Search<'api, C> where AdapterError: From<<C as Client>::Err> {
    /// ---
    ///
    /// # Search code
    ///
    /// Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
    /// 
    /// When searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:
    /// 
    /// `q=addClass+in:file+language:js+repo:jquery/jquery`
    /// 
    /// This query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.
    /// 
    /// Considerations for code search:
    /// 
    /// Due to the complexity of searching code, there are a few restrictions on how searches are performed:
    /// 
    /// *   Only the _default branch_ is considered. In most cases, this will be the `master` branch.
    /// *   Only files smaller than 384 KB are searchable.
    /// *   You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing
    /// language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.
    /// 
    /// This endpoint requires you to authenticate and limits you to 10 requests per minute.
    ///
    /// [GitHub API docs for code](https://docs.github.com/rest/search/search#search-code)
    ///
    /// ---
    pub async fn code_async(&self, query_params: impl Into<SearchCodeParams<'api>>) -> Result<GetSearchCodeResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/code", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        request_uri.push_str(&serde_urlencoded::to_string(query_params.into())?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None::<C::Body>,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch_async(request).await?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json_async().await?)
        } else {
            match github_response.status_code() {
                304 => Err(SearchCodeError::Status304.into()),
                503 => Err(SearchCodeError::Status503(github_response.to_json_async().await?).into()),
                422 => Err(SearchCodeError::Status422(github_response.to_json_async().await?).into()),
                403 => Err(SearchCodeError::Status403(github_response.to_json_async().await?).into()),
                code => Err(SearchCodeError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search code
    ///
    /// Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
    /// 
    /// When searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:
    /// 
    /// `q=addClass+in:file+language:js+repo:jquery/jquery`
    /// 
    /// This query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.
    /// 
    /// Considerations for code search:
    /// 
    /// Due to the complexity of searching code, there are a few restrictions on how searches are performed:
    /// 
    /// *   Only the _default branch_ is considered. In most cases, this will be the `master` branch.
    /// *   Only files smaller than 384 KB are searchable.
    /// *   You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing
    /// language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.
    /// 
    /// This endpoint requires you to authenticate and limits you to 10 requests per minute.
    ///
    /// [GitHub API docs for code](https://docs.github.com/rest/search/search#search-code)
    ///
    /// ---
    #[cfg(not(target_arch = "wasm32"))]
    pub fn code(&self, query_params: impl Into<SearchCodeParams<'api>>) -> Result<GetSearchCodeResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/code", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        let qp: SearchCodeParams = query_params.into();
        request_uri.push_str(&serde_urlencoded::to_string(qp)?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch(request)?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json()?)
        } else {
            match github_response.status_code() {
                304 => Err(SearchCodeError::Status304.into()),
                503 => Err(SearchCodeError::Status503(github_response.to_json()?).into()),
                422 => Err(SearchCodeError::Status422(github_response.to_json()?).into()),
                403 => Err(SearchCodeError::Status403(github_response.to_json()?).into()),
                code => Err(SearchCodeError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search commits
    ///
    /// Find commits via various criteria on the default branch (usually `main`). This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
    /// 
    /// When searching for commits, you can get text match metadata for the **message** field when you provide the `text-match` media type. For more details about how to receive highlighted search results, see [Text match
    /// metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you want to find commits related to CSS in the [octocat/Spoon-Knife](https://github.com/octocat/Spoon-Knife) repository. Your query would look something like this:
    /// 
    /// `q=repo:octocat/Spoon-Knife+css`
    ///
    /// [GitHub API docs for commits](https://docs.github.com/rest/search/search#search-commits)
    ///
    /// ---
    pub async fn commits_async(&self, query_params: impl Into<SearchCommitsParams<'api>>) -> Result<GetSearchCommitsResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/commits", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        request_uri.push_str(&serde_urlencoded::to_string(query_params.into())?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None::<C::Body>,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch_async(request).await?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json_async().await?)
        } else {
            match github_response.status_code() {
                304 => Err(SearchCommitsError::Status304.into()),
                code => Err(SearchCommitsError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search commits
    ///
    /// Find commits via various criteria on the default branch (usually `main`). This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
    /// 
    /// When searching for commits, you can get text match metadata for the **message** field when you provide the `text-match` media type. For more details about how to receive highlighted search results, see [Text match
    /// metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you want to find commits related to CSS in the [octocat/Spoon-Knife](https://github.com/octocat/Spoon-Knife) repository. Your query would look something like this:
    /// 
    /// `q=repo:octocat/Spoon-Knife+css`
    ///
    /// [GitHub API docs for commits](https://docs.github.com/rest/search/search#search-commits)
    ///
    /// ---
    #[cfg(not(target_arch = "wasm32"))]
    pub fn commits(&self, query_params: impl Into<SearchCommitsParams<'api>>) -> Result<GetSearchCommitsResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/commits", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        let qp: SearchCommitsParams = query_params.into();
        request_uri.push_str(&serde_urlencoded::to_string(qp)?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch(request)?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json()?)
        } else {
            match github_response.status_code() {
                304 => Err(SearchCommitsError::Status304.into()),
                code => Err(SearchCommitsError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search issues and pull requests
    ///
    /// > [!WARNING]
    /// > **Notice:** Search for issues and pull requests will be overridden by advanced search on September 4, 2025.
    /// > You can read more about this change on [the GitHub blog](https://github.blog/changelog/2025-03-06-github-issues-projects-api-support-for-issues-advanced-search-and-more/).
    ///
    /// [GitHub API docs for issues_and_pull_requests](https://docs.github.com/rest/search/search#search-issues-and-pull-requests)
    ///
    /// ---
    pub async fn issues_and_pull_requests_async(&self, query_params: impl Into<SearchIssuesAndPullRequestsParams<'api>>) -> Result<GetSearchIssuesAndPullRequestsResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/issues", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        request_uri.push_str(&serde_urlencoded::to_string(query_params.into())?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None::<C::Body>,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch_async(request).await?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json_async().await?)
        } else {
            match github_response.status_code() {
                503 => Err(SearchIssuesAndPullRequestsError::Status503(github_response.to_json_async().await?).into()),
                422 => Err(SearchIssuesAndPullRequestsError::Status422(github_response.to_json_async().await?).into()),
                304 => Err(SearchIssuesAndPullRequestsError::Status304.into()),
                403 => Err(SearchIssuesAndPullRequestsError::Status403(github_response.to_json_async().await?).into()),
                code => Err(SearchIssuesAndPullRequestsError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search issues and pull requests
    ///
    /// > [!WARNING]
    /// > **Notice:** Search for issues and pull requests will be overridden by advanced search on September 4, 2025.
    /// > You can read more about this change on [the GitHub blog](https://github.blog/changelog/2025-03-06-github-issues-projects-api-support-for-issues-advanced-search-and-more/).
    ///
    /// [GitHub API docs for issues_and_pull_requests](https://docs.github.com/rest/search/search#search-issues-and-pull-requests)
    ///
    /// ---
    #[cfg(not(target_arch = "wasm32"))]
    pub fn issues_and_pull_requests(&self, query_params: impl Into<SearchIssuesAndPullRequestsParams<'api>>) -> Result<GetSearchIssuesAndPullRequestsResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/issues", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        let qp: SearchIssuesAndPullRequestsParams = query_params.into();
        request_uri.push_str(&serde_urlencoded::to_string(qp)?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch(request)?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json()?)
        } else {
            match github_response.status_code() {
                503 => Err(SearchIssuesAndPullRequestsError::Status503(github_response.to_json()?).into()),
                422 => Err(SearchIssuesAndPullRequestsError::Status422(github_response.to_json()?).into()),
                304 => Err(SearchIssuesAndPullRequestsError::Status304.into()),
                403 => Err(SearchIssuesAndPullRequestsError::Status403(github_response.to_json()?).into()),
                code => Err(SearchIssuesAndPullRequestsError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search labels
    ///
    /// Find labels in a repository with names or descriptions that match search keywords. Returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
    /// 
    /// When searching for labels, you can get text match metadata for the label **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you want to find labels in the `linguist` repository that match `bug`, `defect`, or `enhancement`. Your query might look like this:
    /// 
    /// `q=bug+defect+enhancement&repository_id=64778136`
    /// 
    /// The labels that best match the query appear first in the search results.
    ///
    /// [GitHub API docs for labels](https://docs.github.com/rest/search/search#search-labels)
    ///
    /// ---
    pub async fn labels_async(&self, query_params: impl Into<SearchLabelsParams<'api>>) -> Result<GetSearchLabelsResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/labels", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        request_uri.push_str(&serde_urlencoded::to_string(query_params.into())?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None::<C::Body>,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch_async(request).await?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json_async().await?)
        } else {
            match github_response.status_code() {
                304 => Err(SearchLabelsError::Status304.into()),
                404 => Err(SearchLabelsError::Status404(github_response.to_json_async().await?).into()),
                403 => Err(SearchLabelsError::Status403(github_response.to_json_async().await?).into()),
                422 => Err(SearchLabelsError::Status422(github_response.to_json_async().await?).into()),
                code => Err(SearchLabelsError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search labels
    ///
    /// Find labels in a repository with names or descriptions that match search keywords. Returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
    /// 
    /// When searching for labels, you can get text match metadata for the label **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you want to find labels in the `linguist` repository that match `bug`, `defect`, or `enhancement`. Your query might look like this:
    /// 
    /// `q=bug+defect+enhancement&repository_id=64778136`
    /// 
    /// The labels that best match the query appear first in the search results.
    ///
    /// [GitHub API docs for labels](https://docs.github.com/rest/search/search#search-labels)
    ///
    /// ---
    #[cfg(not(target_arch = "wasm32"))]
    pub fn labels(&self, query_params: impl Into<SearchLabelsParams<'api>>) -> Result<GetSearchLabelsResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/labels", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        let qp: SearchLabelsParams = query_params.into();
        request_uri.push_str(&serde_urlencoded::to_string(qp)?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch(request)?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json()?)
        } else {
            match github_response.status_code() {
                304 => Err(SearchLabelsError::Status304.into()),
                404 => Err(SearchLabelsError::Status404(github_response.to_json()?).into()),
                403 => Err(SearchLabelsError::Status403(github_response.to_json()?).into()),
                422 => Err(SearchLabelsError::Status422(github_response.to_json()?).into()),
                code => Err(SearchLabelsError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search repositories
    ///
    /// Find repositories via various criteria. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
    /// 
    /// When searching for repositories, you can get text match metadata for the **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you want to search for popular Tetris repositories written in assembly code, your query might look like this:
    /// 
    /// `q=tetris+language:assembly&sort=stars&order=desc`
    /// 
    /// This query searches for repositories with the word `tetris` in the name, the description, or the README. The results are limited to repositories where the primary language is assembly. The results are sorted by stars in descending order, so that the most popular repositories appear first in the search results.
    ///
    /// [GitHub API docs for repos](https://docs.github.com/rest/search/search#search-repositories)
    ///
    /// ---
    pub async fn repos_async(&self, query_params: impl Into<SearchReposParams<'api>>) -> Result<GetSearchReposResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/repositories", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        request_uri.push_str(&serde_urlencoded::to_string(query_params.into())?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None::<C::Body>,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch_async(request).await?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json_async().await?)
        } else {
            match github_response.status_code() {
                503 => Err(SearchReposError::Status503(github_response.to_json_async().await?).into()),
                422 => Err(SearchReposError::Status422(github_response.to_json_async().await?).into()),
                304 => Err(SearchReposError::Status304.into()),
                code => Err(SearchReposError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search repositories
    ///
    /// Find repositories via various criteria. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
    /// 
    /// When searching for repositories, you can get text match metadata for the **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you want to search for popular Tetris repositories written in assembly code, your query might look like this:
    /// 
    /// `q=tetris+language:assembly&sort=stars&order=desc`
    /// 
    /// This query searches for repositories with the word `tetris` in the name, the description, or the README. The results are limited to repositories where the primary language is assembly. The results are sorted by stars in descending order, so that the most popular repositories appear first in the search results.
    ///
    /// [GitHub API docs for repos](https://docs.github.com/rest/search/search#search-repositories)
    ///
    /// ---
    #[cfg(not(target_arch = "wasm32"))]
    pub fn repos(&self, query_params: impl Into<SearchReposParams<'api>>) -> Result<GetSearchReposResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/repositories", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        let qp: SearchReposParams = query_params.into();
        request_uri.push_str(&serde_urlencoded::to_string(qp)?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch(request)?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json()?)
        } else {
            match github_response.status_code() {
                503 => Err(SearchReposError::Status503(github_response.to_json()?).into()),
                422 => Err(SearchReposError::Status422(github_response.to_json()?).into()),
                304 => Err(SearchReposError::Status304.into()),
                code => Err(SearchReposError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search topics
    ///
    /// Find topics via various criteria. Results are sorted by best match. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api). See "[Searching topics](https://docs.github.com/articles/searching-topics/)" for a detailed list of qualifiers.
    /// 
    /// When searching for topics, you can get text match metadata for the topic's **short\_description**, **description**, **name**, or **display\_name** field when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you want to search for topics related to Ruby that are featured on https://github.com/topics. Your query might look like this:
    /// 
    /// `q=ruby+is:featured`
    /// 
    /// This query searches for topics with the keyword `ruby` and limits the results to find only topics that are featured. The topics that are the best match for the query appear first in the search results.
    ///
    /// [GitHub API docs for topics](https://docs.github.com/rest/search/search#search-topics)
    ///
    /// ---
    pub async fn topics_async(&self, query_params: impl Into<SearchTopicsParams<'api>>) -> Result<GetSearchTopicsResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/topics", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        request_uri.push_str(&serde_urlencoded::to_string(query_params.into())?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None::<C::Body>,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch_async(request).await?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json_async().await?)
        } else {
            match github_response.status_code() {
                304 => Err(SearchTopicsError::Status304.into()),
                code => Err(SearchTopicsError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search topics
    ///
    /// Find topics via various criteria. Results are sorted by best match. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api). See "[Searching topics](https://docs.github.com/articles/searching-topics/)" for a detailed list of qualifiers.
    /// 
    /// When searching for topics, you can get text match metadata for the topic's **short\_description**, **description**, **name**, or **display\_name** field when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you want to search for topics related to Ruby that are featured on https://github.com/topics. Your query might look like this:
    /// 
    /// `q=ruby+is:featured`
    /// 
    /// This query searches for topics with the keyword `ruby` and limits the results to find only topics that are featured. The topics that are the best match for the query appear first in the search results.
    ///
    /// [GitHub API docs for topics](https://docs.github.com/rest/search/search#search-topics)
    ///
    /// ---
    #[cfg(not(target_arch = "wasm32"))]
    pub fn topics(&self, query_params: impl Into<SearchTopicsParams<'api>>) -> Result<GetSearchTopicsResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/topics", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        let qp: SearchTopicsParams = query_params.into();
        request_uri.push_str(&serde_urlencoded::to_string(qp)?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch(request)?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json()?)
        } else {
            match github_response.status_code() {
                304 => Err(SearchTopicsError::Status304.into()),
                code => Err(SearchTopicsError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search users
    ///
    /// Find users via various criteria. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
    /// 
    /// When searching for users, you can get text match metadata for the issue **login**, public **email**, and **name** fields when you pass the `text-match` media type. For more details about highlighting search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata). For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you're looking for a list of popular users, you might try this query:
    /// 
    /// `q=tom+repos:%3E42+followers:%3E1000`
    /// 
    /// This query searches for users with the name `tom`. The results are restricted to users with more than 42 repositories and over 1,000 followers.
    /// 
    /// This endpoint does not accept authentication and will only include publicly visible users. As an alternative, you can use the GraphQL API. The GraphQL API requires authentication and will return private users, including Enterprise Managed Users (EMUs), that you are authorized to view. For more information, see "[GraphQL Queries](https://docs.github.com/graphql/reference/queries#search)."
    ///
    /// [GitHub API docs for users](https://docs.github.com/rest/search/search#search-users)
    ///
    /// ---
    pub async fn users_async(&self, query_params: impl Into<SearchUsersParams<'api>>) -> Result<GetSearchUsersResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/users", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        request_uri.push_str(&serde_urlencoded::to_string(query_params.into())?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None::<C::Body>,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch_async(request).await?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json_async().await?)
        } else {
            match github_response.status_code() {
                304 => Err(SearchUsersError::Status304.into()),
                503 => Err(SearchUsersError::Status503(github_response.to_json_async().await?).into()),
                422 => Err(SearchUsersError::Status422(github_response.to_json_async().await?).into()),
                code => Err(SearchUsersError::Generic { code }.into()),
            }
        }
    }

    /// ---
    ///
    /// # Search users
    ///
    /// Find users via various criteria. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).
    /// 
    /// When searching for users, you can get text match metadata for the issue **login**, public **email**, and **name** fields when you pass the `text-match` media type. For more details about highlighting search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata). For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).
    /// 
    /// For example, if you're looking for a list of popular users, you might try this query:
    /// 
    /// `q=tom+repos:%3E42+followers:%3E1000`
    /// 
    /// This query searches for users with the name `tom`. The results are restricted to users with more than 42 repositories and over 1,000 followers.
    /// 
    /// This endpoint does not accept authentication and will only include publicly visible users. As an alternative, you can use the GraphQL API. The GraphQL API requires authentication and will return private users, including Enterprise Managed Users (EMUs), that you are authorized to view. For more information, see "[GraphQL Queries](https://docs.github.com/graphql/reference/queries#search)."
    ///
    /// [GitHub API docs for users](https://docs.github.com/rest/search/search#search-users)
    ///
    /// ---
    #[cfg(not(target_arch = "wasm32"))]
    pub fn users(&self, query_params: impl Into<SearchUsersParams<'api>>) -> Result<GetSearchUsersResponse200, AdapterError> {

        let mut request_uri = format!("{}/search/users", super::GITHUB_BASE_API_URL);

        request_uri.push_str("?");
        let qp: SearchUsersParams = query_params.into();
        request_uri.push_str(&serde_urlencoded::to_string(qp)?);

        let req = GitHubRequest {
            uri: request_uri,
            body: None,
            method: "GET",
            headers: vec![]
        };

        let request = self.client.build(req)?;

        // --

        let github_response = self.client.fetch(request)?;

        // --

        if github_response.is_success() {
            Ok(github_response.to_json()?)
        } else {
            match github_response.status_code() {
                304 => Err(SearchUsersError::Status304.into()),
                503 => Err(SearchUsersError::Status503(github_response.to_json()?).into()),
                422 => Err(SearchUsersError::Status422(github_response.to_json()?).into()),
                code => Err(SearchUsersError::Generic { code }.into()),
            }
        }
    }

}