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

#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
#![allow(
    clippy::approx_constant,
    clippy::type_complexity,
    clippy::unreadable_literal,
    clippy::upper_case_acronyms
)]
#![cfg_attr(feature = "dox", feature(doc_cfg))]

#[allow(unused_imports)]
use libc::{
    c_char, c_double, c_float, c_int, c_long, c_short, c_uchar, c_uint, c_ulong, c_ushort, c_void,
    intptr_t, size_t, ssize_t, uintptr_t, FILE,
};

#[allow(unused_imports)]
use glib::{gboolean, gconstpointer, gpointer, GType};

// Enums
pub type SecretBackendFlags = c_int;
pub const SECRET_BACKEND_NONE: SecretBackendFlags = 0;
pub const SECRET_BACKEND_OPEN_SESSION: SecretBackendFlags = 2;
pub const SECRET_BACKEND_LOAD_COLLECTIONS: SecretBackendFlags = 4;

pub type SecretError = c_int;
pub const SECRET_ERROR_PROTOCOL: SecretError = 1;
pub const SECRET_ERROR_IS_LOCKED: SecretError = 2;
pub const SECRET_ERROR_NO_SUCH_OBJECT: SecretError = 3;
pub const SECRET_ERROR_ALREADY_EXISTS: SecretError = 4;
pub const SECRET_ERROR_INVALID_FILE_FORMAT: SecretError = 5;

pub type SecretSchemaAttributeType = c_int;
pub const SECRET_SCHEMA_ATTRIBUTE_STRING: SecretSchemaAttributeType = 0;
pub const SECRET_SCHEMA_ATTRIBUTE_INTEGER: SecretSchemaAttributeType = 1;
pub const SECRET_SCHEMA_ATTRIBUTE_BOOLEAN: SecretSchemaAttributeType = 2;

pub type SecretSchemaType = c_int;
pub const SECRET_SCHEMA_TYPE_NOTE: SecretSchemaType = 0;
pub const SECRET_SCHEMA_TYPE_COMPAT_NETWORK: SecretSchemaType = 1;

// Constants
pub const SECRET_BACKEND_EXTENSION_POINT_NAME: *const c_char =
    b"secret-backend\0" as *const u8 as *const c_char;
pub const SECRET_COLLECTION_DEFAULT: *const c_char = b"default\0" as *const u8 as *const c_char;
pub const SECRET_COLLECTION_SESSION: *const c_char = b"session\0" as *const u8 as *const c_char;

// Flags
pub type SecretCollectionCreateFlags = c_uint;
pub const SECRET_COLLECTION_CREATE_NONE: SecretCollectionCreateFlags = 0;

pub type SecretCollectionFlags = c_uint;
pub const SECRET_COLLECTION_NONE: SecretCollectionFlags = 0;
pub const SECRET_COLLECTION_LOAD_ITEMS: SecretCollectionFlags = 2;

pub type SecretItemCreateFlags = c_uint;
pub const SECRET_ITEM_CREATE_NONE: SecretItemCreateFlags = 0;
pub const SECRET_ITEM_CREATE_REPLACE: SecretItemCreateFlags = 2;

pub type SecretItemFlags = c_uint;
pub const SECRET_ITEM_NONE: SecretItemFlags = 0;
pub const SECRET_ITEM_LOAD_SECRET: SecretItemFlags = 2;

pub type SecretSchemaFlags = c_uint;
pub const SECRET_SCHEMA_NONE: SecretSchemaFlags = 0;
pub const SECRET_SCHEMA_DONT_MATCH_NAME: SecretSchemaFlags = 2;

pub type SecretSearchFlags = c_uint;
pub const SECRET_SEARCH_NONE: SecretSearchFlags = 0;
pub const SECRET_SEARCH_ALL: SecretSearchFlags = 2;
pub const SECRET_SEARCH_UNLOCK: SecretSearchFlags = 4;
pub const SECRET_SEARCH_LOAD_SECRETS: SecretSearchFlags = 8;

pub type SecretServiceFlags = c_uint;
pub const SECRET_SERVICE_NONE: SecretServiceFlags = 0;
pub const SECRET_SERVICE_OPEN_SESSION: SecretServiceFlags = 2;
pub const SECRET_SERVICE_LOAD_COLLECTIONS: SecretServiceFlags = 4;

// Records
#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretBackendInterface {
    pub parent_iface: gobject::GTypeInterface,
    pub ensure_for_flags: Option<
        unsafe extern "C" fn(
            *mut SecretBackend,
            SecretBackendFlags,
            *mut gio::GCancellable,
            gio::GAsyncReadyCallback,
            gpointer,
        ),
    >,
    pub ensure_for_flags_finish: Option<
        unsafe extern "C" fn(
            *mut SecretBackend,
            *mut gio::GAsyncResult,
            *mut *mut glib::GError,
        ) -> gboolean,
    >,
    pub store: Option<
        unsafe extern "C" fn(
            *mut SecretBackend,
            *const SecretSchema,
            *mut glib::GHashTable,
            *const c_char,
            *const c_char,
            *mut SecretValue,
            *mut gio::GCancellable,
            gio::GAsyncReadyCallback,
            gpointer,
        ),
    >,
    pub store_finish: Option<
        unsafe extern "C" fn(
            *mut SecretBackend,
            *mut gio::GAsyncResult,
            *mut *mut glib::GError,
        ) -> gboolean,
    >,
    pub lookup: Option<
        unsafe extern "C" fn(
            *mut SecretBackend,
            *const SecretSchema,
            *mut glib::GHashTable,
            *mut gio::GCancellable,
            gio::GAsyncReadyCallback,
            gpointer,
        ),
    >,
    pub lookup_finish: Option<
        unsafe extern "C" fn(
            *mut SecretBackend,
            *mut gio::GAsyncResult,
            *mut *mut glib::GError,
        ) -> *mut SecretValue,
    >,
    pub clear: Option<
        unsafe extern "C" fn(
            *mut SecretBackend,
            *const SecretSchema,
            *mut glib::GHashTable,
            *mut gio::GCancellable,
            gio::GAsyncReadyCallback,
            gpointer,
        ),
    >,
    pub clear_finish: Option<
        unsafe extern "C" fn(
            *mut SecretBackend,
            *mut gio::GAsyncResult,
            *mut *mut glib::GError,
        ) -> gboolean,
    >,
    pub search: Option<
        unsafe extern "C" fn(
            *mut SecretBackend,
            *const SecretSchema,
            *mut glib::GHashTable,
            SecretSearchFlags,
            *mut gio::GCancellable,
            gio::GAsyncReadyCallback,
            gpointer,
        ),
    >,
    pub search_finish: Option<
        unsafe extern "C" fn(
            *mut SecretBackend,
            *mut gio::GAsyncResult,
            *mut *mut glib::GError,
        ) -> *mut glib::GList,
    >,
}

impl ::std::fmt::Debug for SecretBackendInterface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretBackendInterface @ {:p}", self))
            .field("parent_iface", &self.parent_iface)
            .field("ensure_for_flags", &self.ensure_for_flags)
            .field("ensure_for_flags_finish", &self.ensure_for_flags_finish)
            .field("store", &self.store)
            .field("store_finish", &self.store_finish)
            .field("lookup", &self.lookup)
            .field("lookup_finish", &self.lookup_finish)
            .field("clear", &self.clear)
            .field("clear_finish", &self.clear_finish)
            .field("search", &self.search)
            .field("search_finish", &self.search_finish)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretCollectionClass {
    pub parent_class: gio::GDBusProxyClass,
    pub padding: [gpointer; 8],
}

impl ::std::fmt::Debug for SecretCollectionClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretCollectionClass @ {:p}", self))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[repr(C)]
pub struct _SecretCollectionPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type SecretCollectionPrivate = *mut _SecretCollectionPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretItemClass {
    pub parent_class: gio::GDBusProxyClass,
    pub padding: [gpointer; 4],
}

impl ::std::fmt::Debug for SecretItemClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretItemClass @ {:p}", self))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[repr(C)]
pub struct _SecretItemPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type SecretItemPrivate = *mut _SecretItemPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretPromptClass {
    pub parent_class: gio::GDBusProxyClass,
    pub padding: [gpointer; 8],
}

impl ::std::fmt::Debug for SecretPromptClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretPromptClass @ {:p}", self))
            .field("parent_class", &self.parent_class)
            .finish()
    }
}

#[repr(C)]
pub struct _SecretPromptPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type SecretPromptPrivate = *mut _SecretPromptPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretRetrievableInterface {
    pub parent_iface: gobject::GTypeInterface,
    pub retrieve_secret: Option<
        unsafe extern "C" fn(
            *mut SecretRetrievable,
            *mut gio::GCancellable,
            gio::GAsyncReadyCallback,
            gpointer,
        ),
    >,
    pub retrieve_secret_finish: Option<
        unsafe extern "C" fn(
            *mut SecretRetrievable,
            *mut gio::GAsyncResult,
            *mut *mut glib::GError,
        ) -> *mut SecretValue,
    >,
}

impl ::std::fmt::Debug for SecretRetrievableInterface {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretRetrievableInterface @ {:p}", self))
            .field("parent_iface", &self.parent_iface)
            .field("retrieve_secret", &self.retrieve_secret)
            .field("retrieve_secret_finish", &self.retrieve_secret_finish)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretSchema {
    pub name: *const c_char,
    pub flags: SecretSchemaFlags,
    pub attributes: [SecretSchemaAttribute; 32],
    pub reserved: c_int,
    pub reserved1: gpointer,
    pub reserved2: gpointer,
    pub reserved3: gpointer,
    pub reserved4: gpointer,
    pub reserved5: gpointer,
    pub reserved6: gpointer,
    pub reserved7: gpointer,
}

impl ::std::fmt::Debug for SecretSchema {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretSchema @ {:p}", self))
            .field("name", &self.name)
            .field("flags", &self.flags)
            .field("attributes", &self.attributes)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretSchemaAttribute {
    pub name: *const c_char,
    pub type_: SecretSchemaAttributeType,
}

impl ::std::fmt::Debug for SecretSchemaAttribute {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretSchemaAttribute @ {:p}", self))
            .field("name", &self.name)
            .field("type_", &self.type_)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretServiceClass {
    pub parent_class: gio::GDBusProxyClass,
    pub collection_gtype: GType,
    pub item_gtype: GType,
    pub prompt_sync: Option<
        unsafe extern "C" fn(
            *mut SecretService,
            *mut SecretPrompt,
            *mut gio::GCancellable,
            *const glib::GVariantType,
            *mut *mut glib::GError,
        ) -> *mut glib::GVariant,
    >,
    pub prompt_async: Option<
        unsafe extern "C" fn(
            *mut SecretService,
            *mut SecretPrompt,
            *const glib::GVariantType,
            *mut gio::GCancellable,
            gio::GAsyncReadyCallback,
            gpointer,
        ),
    >,
    pub prompt_finish: Option<
        unsafe extern "C" fn(
            *mut SecretService,
            *mut gio::GAsyncResult,
            *mut *mut glib::GError,
        ) -> *mut glib::GVariant,
    >,
    pub get_collection_gtype: Option<unsafe extern "C" fn(*mut SecretService) -> GType>,
    pub get_item_gtype: Option<unsafe extern "C" fn(*mut SecretService) -> GType>,
    pub padding: [gpointer; 14],
}

impl ::std::fmt::Debug for SecretServiceClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretServiceClass @ {:p}", self))
            .field("parent_class", &self.parent_class)
            .field("collection_gtype", &self.collection_gtype)
            .field("item_gtype", &self.item_gtype)
            .field("prompt_sync", &self.prompt_sync)
            .field("prompt_async", &self.prompt_async)
            .field("prompt_finish", &self.prompt_finish)
            .field("get_collection_gtype", &self.get_collection_gtype)
            .field("get_item_gtype", &self.get_item_gtype)
            .finish()
    }
}

#[repr(C)]
pub struct _SecretServicePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type SecretServicePrivate = *mut _SecretServicePrivate;

#[repr(C)]
pub struct SecretValue {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

impl ::std::fmt::Debug for SecretValue {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretValue @ {:p}", self))
            .finish()
    }
}

// Classes
#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretCollection {
    pub parent: gio::GDBusProxy,
    pub pv: *mut SecretCollectionPrivate,
}

impl ::std::fmt::Debug for SecretCollection {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretCollection @ {:p}", self))
            .field("parent", &self.parent)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretItem {
    pub parent_instance: gio::GDBusProxy,
    pub pv: *mut SecretItemPrivate,
}

impl ::std::fmt::Debug for SecretItem {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretItem @ {:p}", self))
            .field("parent_instance", &self.parent_instance)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretPrompt {
    pub parent_instance: gio::GDBusProxy,
    pub pv: *mut SecretPromptPrivate,
}

impl ::std::fmt::Debug for SecretPrompt {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretPrompt @ {:p}", self))
            .field("parent_instance", &self.parent_instance)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct SecretService {
    pub parent: gio::GDBusProxy,
    pub pv: *mut SecretServicePrivate,
}

impl ::std::fmt::Debug for SecretService {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("SecretService @ {:p}", self))
            .field("parent", &self.parent)
            .finish()
    }
}

// Interfaces
#[repr(C)]
pub struct SecretBackend {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

impl ::std::fmt::Debug for SecretBackend {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "SecretBackend @ {:p}", self)
    }
}

#[repr(C)]
pub struct SecretRetrievable {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

impl ::std::fmt::Debug for SecretRetrievable {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        write!(f, "SecretRetrievable @ {:p}", self)
    }
}

#[link(name = "secret-1")]
extern "C" {

    //=========================================================================
    // SecretBackendFlags
    //=========================================================================
    pub fn secret_backend_flags_get_type() -> GType;

    //=========================================================================
    // SecretError
    //=========================================================================
    pub fn secret_error_get_type() -> GType;
    pub fn secret_error_get_quark() -> glib::GQuark;

    //=========================================================================
    // SecretSchemaAttributeType
    //=========================================================================
    pub fn secret_schema_attribute_type_get_type() -> GType;

    //=========================================================================
    // SecretSchemaType
    //=========================================================================
    pub fn secret_schema_type_get_type() -> GType;

    //=========================================================================
    // SecretCollectionCreateFlags
    //=========================================================================
    pub fn secret_collection_create_flags_get_type() -> GType;

    //=========================================================================
    // SecretCollectionFlags
    //=========================================================================
    pub fn secret_collection_flags_get_type() -> GType;

    //=========================================================================
    // SecretItemCreateFlags
    //=========================================================================
    pub fn secret_item_create_flags_get_type() -> GType;

    //=========================================================================
    // SecretItemFlags
    //=========================================================================
    pub fn secret_item_flags_get_type() -> GType;

    //=========================================================================
    // SecretSchemaFlags
    //=========================================================================
    pub fn secret_schema_flags_get_type() -> GType;

    //=========================================================================
    // SecretSearchFlags
    //=========================================================================
    pub fn secret_search_flags_get_type() -> GType;

    //=========================================================================
    // SecretServiceFlags
    //=========================================================================
    pub fn secret_service_flags_get_type() -> GType;

    //=========================================================================
    // SecretSchema
    //=========================================================================
    pub fn secret_schema_get_type() -> GType;
    pub fn secret_schema_new(
        name: *const c_char,
        flags: SecretSchemaFlags,
        ...
    ) -> *mut SecretSchema;
    pub fn secret_schema_newv(
        name: *const c_char,
        flags: SecretSchemaFlags,
        attribute_names_and_types: *mut glib::GHashTable,
    ) -> *mut SecretSchema;
    pub fn secret_schema_ref(schema: *mut SecretSchema) -> *mut SecretSchema;
    pub fn secret_schema_unref(schema: *mut SecretSchema);

    //=========================================================================
    // SecretSchemaAttribute
    //=========================================================================
    pub fn secret_schema_attribute_get_type() -> GType;

    //=========================================================================
    // SecretValue
    //=========================================================================
    pub fn secret_value_get_type() -> GType;
    pub fn secret_value_new(
        secret: *const c_char,
        length: ssize_t,
        content_type: *const c_char,
    ) -> *mut SecretValue;
    pub fn secret_value_new_full(
        secret: *mut c_char,
        length: ssize_t,
        content_type: *const c_char,
        destroy: glib::GDestroyNotify,
    ) -> *mut SecretValue;
    pub fn secret_value_get(value: *mut SecretValue, length: *mut size_t) -> *const u8;
    pub fn secret_value_get_content_type(value: *mut SecretValue) -> *const c_char;
    pub fn secret_value_get_text(value: *mut SecretValue) -> *const c_char;
    pub fn secret_value_ref(value: *mut SecretValue) -> *mut SecretValue;
    pub fn secret_value_unref(value: gpointer);
    pub fn secret_value_unref_to_password(
        value: *mut SecretValue,
        length: *mut size_t,
    ) -> *mut c_char;

    //=========================================================================
    // SecretCollection
    //=========================================================================
    pub fn secret_collection_get_type() -> GType;
    pub fn secret_collection_new_for_dbus_path_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretCollection;
    pub fn secret_collection_new_for_dbus_path_sync(
        service: *mut SecretService,
        collection_path: *const c_char,
        flags: SecretCollectionFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut SecretCollection;
    pub fn secret_collection_create(
        service: *mut SecretService,
        label: *const c_char,
        alias: *const c_char,
        flags: SecretCollectionCreateFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_collection_create_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretCollection;
    pub fn secret_collection_create_sync(
        service: *mut SecretService,
        label: *const c_char,
        alias: *const c_char,
        flags: SecretCollectionCreateFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut SecretCollection;
    pub fn secret_collection_for_alias(
        service: *mut SecretService,
        alias: *const c_char,
        flags: SecretCollectionFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_collection_for_alias_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretCollection;
    pub fn secret_collection_for_alias_sync(
        service: *mut SecretService,
        alias: *const c_char,
        flags: SecretCollectionFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut SecretCollection;
    pub fn secret_collection_new_for_dbus_path(
        service: *mut SecretService,
        collection_path: *const c_char,
        flags: SecretCollectionFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_collection_delete(
        self_: *mut SecretCollection,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_collection_delete_finish(
        self_: *mut SecretCollection,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_collection_delete_sync(
        self_: *mut SecretCollection,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_collection_get_created(self_: *mut SecretCollection) -> u64;
    pub fn secret_collection_get_flags(self_: *mut SecretCollection) -> SecretCollectionFlags;
    pub fn secret_collection_get_items(self_: *mut SecretCollection) -> *mut glib::GList;
    pub fn secret_collection_get_label(self_: *mut SecretCollection) -> *mut c_char;
    pub fn secret_collection_get_locked(self_: *mut SecretCollection) -> gboolean;
    pub fn secret_collection_get_modified(self_: *mut SecretCollection) -> u64;
    pub fn secret_collection_get_service(self_: *mut SecretCollection) -> *mut SecretService;
    pub fn secret_collection_load_items(
        self_: *mut SecretCollection,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_collection_load_items_finish(
        self_: *mut SecretCollection,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_collection_load_items_sync(
        self_: *mut SecretCollection,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_collection_refresh(self_: *mut SecretCollection);
    pub fn secret_collection_search(
        self_: *mut SecretCollection,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        flags: SecretSearchFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_collection_search_finish(
        self_: *mut SecretCollection,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GList;
    pub fn secret_collection_search_for_dbus_paths(
        collection: *mut SecretCollection,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_collection_search_for_dbus_paths_finish(
        collection: *mut SecretCollection,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut *mut c_char;
    pub fn secret_collection_search_for_dbus_paths_sync(
        collection: *mut SecretCollection,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut *mut c_char;
    pub fn secret_collection_search_sync(
        self_: *mut SecretCollection,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        flags: SecretSearchFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GList;
    pub fn secret_collection_set_label(
        self_: *mut SecretCollection,
        label: *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_collection_set_label_finish(
        self_: *mut SecretCollection,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_collection_set_label_sync(
        self_: *mut SecretCollection,
        label: *const c_char,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;

    //=========================================================================
    // SecretItem
    //=========================================================================
    pub fn secret_item_get_type() -> GType;
    pub fn secret_item_new_for_dbus_path_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretItem;
    pub fn secret_item_new_for_dbus_path_sync(
        service: *mut SecretService,
        item_path: *const c_char,
        flags: SecretItemFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut SecretItem;
    pub fn secret_item_create(
        collection: *mut SecretCollection,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        label: *const c_char,
        value: *mut SecretValue,
        flags: SecretItemCreateFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_item_create_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretItem;
    pub fn secret_item_create_sync(
        collection: *mut SecretCollection,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        label: *const c_char,
        value: *mut SecretValue,
        flags: SecretItemCreateFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut SecretItem;
    pub fn secret_item_load_secrets(
        items: *mut glib::GList,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_item_load_secrets_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_item_load_secrets_sync(
        items: *mut glib::GList,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_item_new_for_dbus_path(
        service: *mut SecretService,
        item_path: *const c_char,
        flags: SecretItemFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_item_delete(
        self_: *mut SecretItem,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_item_delete_finish(
        self_: *mut SecretItem,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_item_delete_sync(
        self_: *mut SecretItem,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_item_get_attributes(self_: *mut SecretItem) -> *mut glib::GHashTable;
    pub fn secret_item_get_created(self_: *mut SecretItem) -> u64;
    pub fn secret_item_get_flags(self_: *mut SecretItem) -> SecretItemFlags;
    pub fn secret_item_get_label(self_: *mut SecretItem) -> *mut c_char;
    pub fn secret_item_get_locked(self_: *mut SecretItem) -> gboolean;
    pub fn secret_item_get_modified(self_: *mut SecretItem) -> u64;
    pub fn secret_item_get_schema_name(self_: *mut SecretItem) -> *mut c_char;
    pub fn secret_item_get_secret(self_: *mut SecretItem) -> *mut SecretValue;
    pub fn secret_item_get_service(self_: *mut SecretItem) -> *mut SecretService;
    pub fn secret_item_load_secret(
        self_: *mut SecretItem,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_item_load_secret_finish(
        self_: *mut SecretItem,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_item_load_secret_sync(
        self_: *mut SecretItem,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_item_refresh(self_: *mut SecretItem);
    pub fn secret_item_set_attributes(
        self_: *mut SecretItem,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_item_set_attributes_finish(
        self_: *mut SecretItem,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_item_set_attributes_sync(
        self_: *mut SecretItem,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_item_set_label(
        self_: *mut SecretItem,
        label: *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_item_set_label_finish(
        self_: *mut SecretItem,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_item_set_label_sync(
        self_: *mut SecretItem,
        label: *const c_char,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_item_set_secret(
        self_: *mut SecretItem,
        value: *mut SecretValue,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_item_set_secret_finish(
        self_: *mut SecretItem,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_item_set_secret_sync(
        self_: *mut SecretItem,
        value: *mut SecretValue,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;

    //=========================================================================
    // SecretPrompt
    //=========================================================================
    pub fn secret_prompt_get_type() -> GType;
    pub fn secret_prompt_perform(
        self_: *mut SecretPrompt,
        window_id: *const c_char,
        return_type: *const glib::GVariantType,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_prompt_perform_finish(
        self_: *mut SecretPrompt,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GVariant;
    pub fn secret_prompt_perform_sync(
        self_: *mut SecretPrompt,
        window_id: *const c_char,
        cancellable: *mut gio::GCancellable,
        return_type: *const glib::GVariantType,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GVariant;
    pub fn secret_prompt_run(
        self_: *mut SecretPrompt,
        window_id: *const c_char,
        cancellable: *mut gio::GCancellable,
        return_type: *const glib::GVariantType,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GVariant;

    //=========================================================================
    // SecretService
    //=========================================================================
    pub fn secret_service_get_type() -> GType;
    pub fn secret_service_disconnect();
    pub fn secret_service_get(
        flags: SecretServiceFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_get_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretService;
    pub fn secret_service_get_sync(
        flags: SecretServiceFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut SecretService;
    pub fn secret_service_open(
        service_gtype: GType,
        service_bus_name: *const c_char,
        flags: SecretServiceFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_open_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretService;
    pub fn secret_service_open_sync(
        service_gtype: GType,
        service_bus_name: *const c_char,
        flags: SecretServiceFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut SecretService;
    pub fn secret_service_clear(
        service: *mut SecretService,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_clear_finish(
        service: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_clear_sync(
        service: *mut SecretService,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_create_collection_dbus_path(
        self_: *mut SecretService,
        properties: *mut glib::GHashTable,
        alias: *const c_char,
        flags: SecretCollectionCreateFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_create_collection_dbus_path_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut c_char;
    pub fn secret_service_create_collection_dbus_path_sync(
        self_: *mut SecretService,
        properties: *mut glib::GHashTable,
        alias: *const c_char,
        flags: SecretCollectionCreateFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut c_char;
    pub fn secret_service_create_item_dbus_path(
        self_: *mut SecretService,
        collection_path: *const c_char,
        properties: *mut glib::GHashTable,
        value: *mut SecretValue,
        flags: SecretItemCreateFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_create_item_dbus_path_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut c_char;
    pub fn secret_service_create_item_dbus_path_sync(
        self_: *mut SecretService,
        collection_path: *const c_char,
        properties: *mut glib::GHashTable,
        value: *mut SecretValue,
        flags: SecretItemCreateFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut c_char;
    pub fn secret_service_decode_dbus_secret(
        service: *mut SecretService,
        value: *mut glib::GVariant,
    ) -> *mut SecretValue;
    pub fn secret_service_delete_item_dbus_path(
        self_: *mut SecretService,
        item_path: *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_delete_item_dbus_path_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_delete_item_dbus_path_sync(
        self_: *mut SecretService,
        item_path: *const c_char,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_encode_dbus_secret(
        service: *mut SecretService,
        value: *mut SecretValue,
    ) -> *mut glib::GVariant;
    pub fn secret_service_ensure_session(
        self_: *mut SecretService,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_ensure_session_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_ensure_session_sync(
        self_: *mut SecretService,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_get_collection_gtype(self_: *mut SecretService) -> GType;
    pub fn secret_service_get_collections(self_: *mut SecretService) -> *mut glib::GList;
    pub fn secret_service_get_flags(self_: *mut SecretService) -> SecretServiceFlags;
    pub fn secret_service_get_item_gtype(self_: *mut SecretService) -> GType;
    pub fn secret_service_get_secret_for_dbus_path(
        self_: *mut SecretService,
        item_path: *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_get_secret_for_dbus_path_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretValue;
    pub fn secret_service_get_secret_for_dbus_path_sync(
        self_: *mut SecretService,
        item_path: *const c_char,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut SecretValue;
    pub fn secret_service_get_secrets_for_dbus_paths(
        self_: *mut SecretService,
        item_paths: *mut *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_get_secrets_for_dbus_paths_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GHashTable;
    pub fn secret_service_get_secrets_for_dbus_paths_sync(
        self_: *mut SecretService,
        item_paths: *mut *const c_char,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GHashTable;
    pub fn secret_service_get_session_algorithms(self_: *mut SecretService) -> *const c_char;
    pub fn secret_service_get_session_dbus_path(self_: *mut SecretService) -> *const c_char;
    pub fn secret_service_load_collections(
        self_: *mut SecretService,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_load_collections_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_load_collections_sync(
        self_: *mut SecretService,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_lock(
        service: *mut SecretService,
        objects: *mut glib::GList,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_lock_dbus_paths(
        self_: *mut SecretService,
        paths: *mut *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_lock_dbus_paths_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        locked: *mut *mut *mut c_char,
        error: *mut *mut glib::GError,
    ) -> c_int;
    pub fn secret_service_lock_dbus_paths_sync(
        self_: *mut SecretService,
        paths: *mut *const c_char,
        cancellable: *mut gio::GCancellable,
        locked: *mut *mut *mut c_char,
        error: *mut *mut glib::GError,
    ) -> c_int;
    pub fn secret_service_lock_finish(
        service: *mut SecretService,
        result: *mut gio::GAsyncResult,
        locked: *mut *mut glib::GList,
        error: *mut *mut glib::GError,
    ) -> c_int;
    pub fn secret_service_lock_sync(
        service: *mut SecretService,
        objects: *mut glib::GList,
        cancellable: *mut gio::GCancellable,
        locked: *mut *mut glib::GList,
        error: *mut *mut glib::GError,
    ) -> c_int;
    pub fn secret_service_lookup(
        service: *mut SecretService,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_lookup_finish(
        service: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretValue;
    pub fn secret_service_lookup_sync(
        service: *mut SecretService,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut SecretValue;
    pub fn secret_service_prompt(
        self_: *mut SecretService,
        prompt: *mut SecretPrompt,
        return_type: *const glib::GVariantType,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_prompt_at_dbus_path(
        self_: *mut SecretService,
        prompt_path: *const c_char,
        return_type: *const glib::GVariantType,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_prompt_at_dbus_path_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GVariant;
    pub fn secret_service_prompt_at_dbus_path_sync(
        self_: *mut SecretService,
        prompt_path: *const c_char,
        cancellable: *mut gio::GCancellable,
        return_type: *const glib::GVariantType,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GVariant;
    pub fn secret_service_prompt_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GVariant;
    pub fn secret_service_prompt_sync(
        self_: *mut SecretService,
        prompt: *mut SecretPrompt,
        cancellable: *mut gio::GCancellable,
        return_type: *const glib::GVariantType,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GVariant;
    pub fn secret_service_read_alias_dbus_path(
        self_: *mut SecretService,
        alias: *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_read_alias_dbus_path_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut c_char;
    pub fn secret_service_read_alias_dbus_path_sync(
        self_: *mut SecretService,
        alias: *const c_char,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut c_char;
    pub fn secret_service_search(
        service: *mut SecretService,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        flags: SecretSearchFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_search_finish(
        service: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GList;
    pub fn secret_service_search_for_dbus_paths(
        self_: *mut SecretService,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_search_for_dbus_paths_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        unlocked: *mut *mut *mut c_char,
        locked: *mut *mut *mut c_char,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_search_for_dbus_paths_sync(
        self_: *mut SecretService,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        unlocked: *mut *mut *mut c_char,
        locked: *mut *mut *mut c_char,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_search_sync(
        service: *mut SecretService,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        flags: SecretSearchFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GList;
    pub fn secret_service_set_alias(
        service: *mut SecretService,
        alias: *const c_char,
        collection: *mut SecretCollection,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_set_alias_finish(
        service: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_set_alias_sync(
        service: *mut SecretService,
        alias: *const c_char,
        collection: *mut SecretCollection,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_set_alias_to_dbus_path(
        self_: *mut SecretService,
        alias: *const c_char,
        collection_path: *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_set_alias_to_dbus_path_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_set_alias_to_dbus_path_sync(
        self_: *mut SecretService,
        alias: *const c_char,
        collection_path: *const c_char,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_store(
        service: *mut SecretService,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        collection: *const c_char,
        label: *const c_char,
        value: *mut SecretValue,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_store_finish(
        service: *mut SecretService,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_store_sync(
        service: *mut SecretService,
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        collection: *const c_char,
        label: *const c_char,
        value: *mut SecretValue,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_service_unlock(
        service: *mut SecretService,
        objects: *mut glib::GList,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_unlock_dbus_paths(
        self_: *mut SecretService,
        paths: *mut *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_service_unlock_dbus_paths_finish(
        self_: *mut SecretService,
        result: *mut gio::GAsyncResult,
        unlocked: *mut *mut *mut c_char,
        error: *mut *mut glib::GError,
    ) -> c_int;
    pub fn secret_service_unlock_dbus_paths_sync(
        self_: *mut SecretService,
        paths: *mut *const c_char,
        cancellable: *mut gio::GCancellable,
        unlocked: *mut *mut *mut c_char,
        error: *mut *mut glib::GError,
    ) -> c_int;
    pub fn secret_service_unlock_finish(
        service: *mut SecretService,
        result: *mut gio::GAsyncResult,
        unlocked: *mut *mut glib::GList,
        error: *mut *mut glib::GError,
    ) -> c_int;
    pub fn secret_service_unlock_sync(
        service: *mut SecretService,
        objects: *mut glib::GList,
        cancellable: *mut gio::GCancellable,
        unlocked: *mut *mut glib::GList,
        error: *mut *mut glib::GError,
    ) -> c_int;

    //=========================================================================
    // SecretBackend
    //=========================================================================
    pub fn secret_backend_get_type() -> GType;
    pub fn secret_backend_get(
        flags: SecretBackendFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_backend_get_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretBackend;

    //=========================================================================
    // SecretRetrievable
    //=========================================================================
    pub fn secret_retrievable_get_type() -> GType;
    pub fn secret_retrievable_get_attributes(
        self_: *mut SecretRetrievable,
    ) -> *mut glib::GHashTable;
    pub fn secret_retrievable_get_created(self_: *mut SecretRetrievable) -> u64;
    pub fn secret_retrievable_get_label(self_: *mut SecretRetrievable) -> *mut c_char;
    pub fn secret_retrievable_get_modified(self_: *mut SecretRetrievable) -> u64;
    pub fn secret_retrievable_retrieve_secret(
        self_: *mut SecretRetrievable,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_retrievable_retrieve_secret_finish(
        self_: *mut SecretRetrievable,
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretValue;
    pub fn secret_retrievable_retrieve_secret_sync(
        self_: *mut SecretRetrievable,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut SecretValue;

    //=========================================================================
    // Other functions
    //=========================================================================
    pub fn secret_attributes_build(schema: *const SecretSchema, ...) -> *mut glib::GHashTable;
    //pub fn secret_attributes_buildv(schema: *const SecretSchema, va: /*Unimplemented*/va_list) -> *mut glib::GHashTable;
    pub fn secret_get_schema(type_: SecretSchemaType) -> *const SecretSchema;
    pub fn secret_password_clear(
        schema: *const SecretSchema,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
        ...
    );
    pub fn secret_password_clear_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_password_clear_sync(
        schema: *const SecretSchema,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
        ...
    ) -> gboolean;
    pub fn secret_password_clearv(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_password_clearv_sync(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_password_free(password: *mut c_char);
    pub fn secret_password_lookup(
        schema: *const SecretSchema,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
        ...
    );
    pub fn secret_password_lookup_binary_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut SecretValue;
    pub fn secret_password_lookup_binary_sync(
        schema: *const SecretSchema,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
        ...
    ) -> *mut SecretValue;
    pub fn secret_password_lookup_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut c_char;
    pub fn secret_password_lookup_nonpageable_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut c_char;
    pub fn secret_password_lookup_nonpageable_sync(
        schema: *const SecretSchema,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
        ...
    ) -> *mut c_char;
    pub fn secret_password_lookup_sync(
        schema: *const SecretSchema,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
        ...
    ) -> *mut c_char;
    pub fn secret_password_lookupv(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_password_lookupv_binary_sync(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut SecretValue;
    pub fn secret_password_lookupv_nonpageable_sync(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut c_char;
    pub fn secret_password_lookupv_sync(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut c_char;
    pub fn secret_password_search(
        schema: *const SecretSchema,
        flags: SecretSearchFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
        ...
    );
    pub fn secret_password_search_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GList;
    pub fn secret_password_search_sync(
        schema: *const SecretSchema,
        flags: SecretSearchFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
        ...
    ) -> *mut glib::GList;
    pub fn secret_password_searchv(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        flags: SecretSearchFlags,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_password_searchv_sync(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        flags: SecretSearchFlags,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> *mut glib::GList;
    pub fn secret_password_store(
        schema: *const SecretSchema,
        collection: *const c_char,
        label: *const c_char,
        password: *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
        ...
    );
    pub fn secret_password_store_binary(
        schema: *const SecretSchema,
        collection: *const c_char,
        label: *const c_char,
        value: *mut SecretValue,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
        ...
    );
    pub fn secret_password_store_binary_sync(
        schema: *const SecretSchema,
        collection: *const c_char,
        label: *const c_char,
        value: *mut SecretValue,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
        ...
    ) -> gboolean;
    pub fn secret_password_store_finish(
        result: *mut gio::GAsyncResult,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_password_store_sync(
        schema: *const SecretSchema,
        collection: *const c_char,
        label: *const c_char,
        password: *const c_char,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
        ...
    ) -> gboolean;
    pub fn secret_password_storev(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        collection: *const c_char,
        label: *const c_char,
        password: *const c_char,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_password_storev_binary(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        collection: *const c_char,
        label: *const c_char,
        value: *mut SecretValue,
        cancellable: *mut gio::GCancellable,
        callback: gio::GAsyncReadyCallback,
        user_data: gpointer,
    );
    pub fn secret_password_storev_binary_sync(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        collection: *const c_char,
        label: *const c_char,
        value: *mut SecretValue,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_password_storev_sync(
        schema: *const SecretSchema,
        attributes: *mut glib::GHashTable,
        collection: *const c_char,
        label: *const c_char,
        password: *const c_char,
        cancellable: *mut gio::GCancellable,
        error: *mut *mut glib::GError,
    ) -> gboolean;
    pub fn secret_password_wipe(password: *mut c_char);

}