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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir
// from gtk-girs (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
#![allow(deprecated)]
use crate::{ffi,Setting,SettingSecretFlags};
use glib::{prelude::*,signal::{connect_raw, SignalHandlerId},translate::*};
use std::{boxed::Box as Box_};
glib::wrapper! {
/// GSM-based Mobile Broadband Settings
///
/// ## Properties
///
///
/// #### `apn`
/// The GPRS Access Point Name specifying the APN used when establishing a
/// data session with the GSM-based network. The APN often determines how
/// the user will be billed for their network usage and whether the user has
/// access to the Internet or just a provider-specific walled-garden, so it
/// is important to use the correct APN for the user's mobile broadband plan.
/// The APN may only be composed of the characters a-z, 0-9, ., and - per GSM
/// 03.60 Section 14.9.
///
/// If the APN is unset (the default) then it may be detected based on
/// "auto-config" setting. The property can be explicitly set to the
/// empty string to prevent that and use no APN.
///
/// Readable | Writeable
///
///
/// #### `auto-config`
/// When [`true`], the settings such as APN, username, or password will
/// default to values that match the network the modem will register
/// to in the Mobile Broadband Provider database.
///
/// Readable | Writeable
///
///
/// #### `device-id`
/// The device unique identifier (as given by the WWAN management service)
/// which this connection applies to. If given, the connection will only
/// apply to the specified device.
///
/// Readable | Writeable
///
///
/// #### `home-only`
/// When [`true`], only connections to the home network will be allowed.
/// Connections to roaming networks will not be made.
///
/// Readable | Writeable
///
///
/// #### `initial-eps-bearer-apn`
/// For LTE modems, this sets the APN for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
///
/// Readable | Writeable
///
///
/// #### `initial-eps-bearer-configure`
/// For LTE modems, this setting determines whether the initial EPS bearer
/// shall be configured when bringing up the connection. It is inferred TRUE
/// if initial-eps-bearer-apn is set.
///
/// Readable | Writeable
///
///
/// #### `initial-eps-bearer-noauth`
/// For LTE modems, this sets NOAUTH authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
/// If [`true`], do not require the other side to authenticate itself to the client.
/// If [`false`], require authentication from the remote side. In almost all cases,
/// this should be [`true`].
///
/// Readable | Writeable
///
///
/// #### `initial-eps-bearer-password`
/// For LTE modems, this sets the password for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
///
/// Readable | Writeable
///
///
/// #### `initial-eps-bearer-password-flags`
/// Flags indicating how to handle the #NMSettingGsm:initial-eps-bearer-password property.
///
/// Readable | Writeable
///
///
/// #### `initial-eps-bearer-refuse-chap`
/// For LTE modems, this disables CHAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
///
/// Readable | Writeable
///
///
/// #### `initial-eps-bearer-refuse-eap`
/// For LTE modems, this disables EAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
///
/// Readable | Writeable
///
///
/// #### `initial-eps-bearer-refuse-mschap`
/// For LTE modems, this disables MSCHAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
///
/// Readable | Writeable
///
///
/// #### `initial-eps-bearer-refuse-mschapv2`
/// For LTE modems, this disables MSCHAPV2 authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
///
/// Readable | Writeable
///
///
/// #### `initial-eps-bearer-refuse-pap`
/// For LTE modems, this disables PAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
///
/// Readable | Writeable
///
///
/// #### `initial-eps-bearer-username`
/// For LTE modems, this sets the username for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
///
/// Readable | Writeable
///
///
/// #### `mtu`
/// If non-zero, only transmit packets of the specified size or smaller,
/// breaking larger packets up into multiple frames.
///
/// Readable | Writeable
///
///
/// #### `network-id`
/// The Network ID (GSM LAI format, ie MCC-MNC) to force specific network
/// registration. If the Network ID is specified, NetworkManager will
/// attempt to force the device to register only on the specified network.
/// This can be used to ensure that the device does not roam when direct
/// roaming control of the device is not otherwise possible.
///
/// Readable | Writeable
///
///
/// #### `number`
/// Legacy setting that used to help establishing PPP data sessions for
/// GSM-based modems.
///
/// Readable | Writeable
///
///
/// #### `password`
/// The password used to authenticate with the network, if required. Many
/// providers do not require a password, or accept any password. But if a
/// password is required, it is specified here.
///
/// Readable | Writeable
///
///
/// #### `password-flags`
/// Flags indicating how to handle the #NMSettingGsm:password property.
///
/// Readable | Writeable
///
///
/// #### `pin`
/// If the SIM is locked with a PIN it must be unlocked before any other
/// operations are requested. Specify the PIN here to allow operation of the
/// device.
///
/// Readable | Writeable
///
///
/// #### `pin-flags`
/// Flags indicating how to handle the #NMSettingGsm:pin property.
///
/// Readable | Writeable
///
///
/// #### `sim-id`
/// The SIM card unique identifier (as given by the WWAN management service)
/// which this connection applies to. If given, the connection will apply
/// to any device also allowed by #NMSettingGsm:device-id which contains a
/// SIM card matching the given identifier.
///
/// Readable | Writeable
///
///
/// #### `sim-operator-id`
/// A MCC/MNC string like "310260" or "21601" identifying the specific
/// mobile network operator which this connection applies to. If given,
/// the connection will apply to any device also allowed by
/// #NMSettingGsm:device-id and #NMSettingGsm:sim-id which contains a SIM
/// card provisioned by the given operator.
///
/// Readable | Writeable
///
///
/// #### `username`
/// The username used to authenticate with the network, if required. Many
/// providers do not require a username, or accept any username. But if a
/// username is required, it is specified here.
///
/// Readable | Writeable
/// <details><summary><h4>Setting</h4></summary>
///
///
/// #### `name`
/// The setting's name, which uniquely identifies the setting within the
/// connection. Each setting type has a name unique to that type, for
/// example "ppp" or "802-11-wireless" or "802-3-ethernet".
///
/// Readable
/// </details>
///
/// # Implements
///
/// [`SettingExt`][trait@crate::prelude::SettingExt]
#[doc(alias = "NMSettingGsm")]
pub struct SettingGsm(Object<ffi::NMSettingGsm, ffi::NMSettingGsmClass>) @extends Setting;
match fn {
type_ => || ffi::nm_setting_gsm_get_type(),
}
}
impl SettingGsm {
/// Creates a new #NMSettingGsm object with default values.
///
/// # Returns
///
/// the new empty #NMSettingGsm object
#[doc(alias = "nm_setting_gsm_new")]
pub fn new() -> SettingGsm {
assert_initialized_main_thread!();
unsafe {
Setting::from_glib_full(ffi::nm_setting_gsm_new()).unsafe_cast()
}
}
// rustdoc-stripper-ignore-next
/// Creates a new builder-pattern struct instance to construct [`SettingGsm`] objects.
///
/// This method returns an instance of [`SettingGsmBuilder`](crate::builders::SettingGsmBuilder) which can be used to create [`SettingGsm`] objects.
pub fn builder() -> SettingGsmBuilder {
SettingGsmBuilder::new()
}
///
/// # Returns
///
/// the #NMSettingGsm:apn property of the setting
#[doc(alias = "nm_setting_gsm_get_apn")]
#[doc(alias = "get_apn")]
pub fn apn(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_apn(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:auto-config property of the setting
#[cfg(feature = "v1_22")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_22")))]
#[doc(alias = "nm_setting_gsm_get_auto_config")]
#[doc(alias = "get_auto_config")]
#[doc(alias = "auto-config")]
pub fn is_auto_config(&self) -> bool {
unsafe {
from_glib(ffi::nm_setting_gsm_get_auto_config(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:device-id property of the setting
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
#[doc(alias = "nm_setting_gsm_get_device_id")]
#[doc(alias = "get_device_id")]
#[doc(alias = "device-id")]
pub fn device_id(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_device_id(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:home-only property of the setting
#[doc(alias = "nm_setting_gsm_get_home_only")]
#[doc(alias = "get_home_only")]
#[doc(alias = "home-only")]
pub fn is_home_only(&self) -> bool {
unsafe {
from_glib(ffi::nm_setting_gsm_get_home_only(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:initial-eps-bearer-apn property of the setting
#[cfg(feature = "v1_44")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
#[doc(alias = "nm_setting_gsm_get_initial_eps_apn")]
#[doc(alias = "get_initial_eps_apn")]
pub fn initial_eps_apn(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_initial_eps_apn(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:initial-eps-bearer-configure property of the setting
#[cfg(feature = "v1_44")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
#[doc(alias = "nm_setting_gsm_get_initial_eps_config")]
#[doc(alias = "get_initial_eps_config")]
pub fn is_initial_eps_config(&self) -> bool {
unsafe {
from_glib(ffi::nm_setting_gsm_get_initial_eps_config(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// For LTE modems, the #NMSettingGsm:initial-eps-noauth property of the setting
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "nm_setting_gsm_get_initial_eps_noauth")]
#[doc(alias = "get_initial_eps_noauth")]
pub fn is_initial_eps_noauth(&self) -> bool {
unsafe {
from_glib(ffi::nm_setting_gsm_get_initial_eps_noauth(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:initial-eps-bearer-password property of the setting
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "nm_setting_gsm_get_initial_eps_password")]
#[doc(alias = "get_initial_eps_password")]
pub fn initial_eps_password(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_initial_eps_password(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// For LTE modems, the #NMSettingGsm:initial-eps-refuse-chap property of the setting
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "nm_setting_gsm_get_initial_eps_refuse_chap")]
#[doc(alias = "get_initial_eps_refuse_chap")]
pub fn is_initial_eps_refuse_chap(&self) -> bool {
unsafe {
from_glib(ffi::nm_setting_gsm_get_initial_eps_refuse_chap(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// For LTE modems, the #NMSettingGsm:initial-eps-refuse-eap property of the setting
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "nm_setting_gsm_get_initial_eps_refuse_eap")]
#[doc(alias = "get_initial_eps_refuse_eap")]
pub fn is_initial_eps_refuse_eap(&self) -> bool {
unsafe {
from_glib(ffi::nm_setting_gsm_get_initial_eps_refuse_eap(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// For LTE modems, the #NMSettingGsm:initial-eps-refuse-mschap property of the setting
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "nm_setting_gsm_get_initial_eps_refuse_mschap")]
#[doc(alias = "get_initial_eps_refuse_mschap")]
pub fn is_initial_eps_refuse_mschap(&self) -> bool {
unsafe {
from_glib(ffi::nm_setting_gsm_get_initial_eps_refuse_mschap(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// For LTE modems, the #NMSettingGsm:initial-eps-refuse-mschapv2 property of the setting
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "nm_setting_gsm_get_initial_eps_refuse_mschapv2")]
#[doc(alias = "get_initial_eps_refuse_mschapv2")]
pub fn is_initial_eps_refuse_mschapv2(&self) -> bool {
unsafe {
from_glib(ffi::nm_setting_gsm_get_initial_eps_refuse_mschapv2(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// For LTE modems, the #NMSettingGsm:initial-eps-refuse-pap property of the setting
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "nm_setting_gsm_get_initial_eps_refuse_pap")]
#[doc(alias = "get_initial_eps_refuse_pap")]
pub fn is_initial_eps_refuse_pap(&self) -> bool {
unsafe {
from_glib(ffi::nm_setting_gsm_get_initial_eps_refuse_pap(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:initial-eps-bearer-username property of the setting
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "nm_setting_gsm_get_initial_eps_username")]
#[doc(alias = "get_initial_eps_username")]
pub fn initial_eps_username(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_initial_eps_username(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:mtu property of the setting
#[cfg(feature = "v1_8")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_8")))]
#[doc(alias = "nm_setting_gsm_get_mtu")]
#[doc(alias = "get_mtu")]
pub fn mtu(&self) -> u32 {
unsafe {
ffi::nm_setting_gsm_get_mtu(self.to_glib_none().0)
}
}
///
/// # Returns
///
/// the #NMSettingGsm:network-id property of the setting
#[doc(alias = "nm_setting_gsm_get_network_id")]
#[doc(alias = "get_network_id")]
#[doc(alias = "network-id")]
pub fn network_id(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_network_id(self.to_glib_none().0))
}
}
///
/// # Deprecated since 1.16
///
/// User-provided values for this setting are no longer used.
///
/// # Returns
///
/// the #NMSettingGsm:number property of the setting
#[cfg_attr(feature = "v1_16", deprecated = "Since 1.16")]
#[allow(deprecated)]
#[doc(alias = "nm_setting_gsm_get_number")]
#[doc(alias = "get_number")]
pub fn number(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_number(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:password property of the setting
#[doc(alias = "nm_setting_gsm_get_password")]
#[doc(alias = "get_password")]
pub fn password(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_password(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingSecretFlags pertaining to the #NMSettingGsm:password
#[doc(alias = "nm_setting_gsm_get_password_flags")]
#[doc(alias = "get_password_flags")]
#[doc(alias = "password-flags")]
pub fn password_flags(&self) -> SettingSecretFlags {
unsafe {
from_glib(ffi::nm_setting_gsm_get_password_flags(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:pin property of the setting
#[doc(alias = "nm_setting_gsm_get_pin")]
#[doc(alias = "get_pin")]
pub fn pin(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_pin(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingSecretFlags pertaining to the #NMSettingGsm:pin
#[doc(alias = "nm_setting_gsm_get_pin_flags")]
#[doc(alias = "get_pin_flags")]
#[doc(alias = "pin-flags")]
pub fn pin_flags(&self) -> SettingSecretFlags {
unsafe {
from_glib(ffi::nm_setting_gsm_get_pin_flags(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:sim-id property of the setting
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
#[doc(alias = "nm_setting_gsm_get_sim_id")]
#[doc(alias = "get_sim_id")]
#[doc(alias = "sim-id")]
pub fn sim_id(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_sim_id(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:sim-operator-id property of the setting
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
#[doc(alias = "nm_setting_gsm_get_sim_operator_id")]
#[doc(alias = "get_sim_operator_id")]
#[doc(alias = "sim-operator-id")]
pub fn sim_operator_id(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_sim_operator_id(self.to_glib_none().0))
}
}
///
/// # Returns
///
/// the #NMSettingGsm:username property of the setting
#[doc(alias = "nm_setting_gsm_get_username")]
#[doc(alias = "get_username")]
pub fn username(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::nm_setting_gsm_get_username(self.to_glib_none().0))
}
}
/// The GPRS Access Point Name specifying the APN used when establishing a
/// data session with the GSM-based network. The APN often determines how
/// the user will be billed for their network usage and whether the user has
/// access to the Internet or just a provider-specific walled-garden, so it
/// is important to use the correct APN for the user's mobile broadband plan.
/// The APN may only be composed of the characters a-z, 0-9, ., and - per GSM
/// 03.60 Section 14.9.
///
/// If the APN is unset (the default) then it may be detected based on
/// "auto-config" setting. The property can be explicitly set to the
/// empty string to prevent that and use no APN.
pub fn set_apn(&self, apn: Option<&str>) {
ObjectExt::set_property(self,"apn", apn)
}
/// When [`true`], the settings such as APN, username, or password will
/// default to values that match the network the modem will register
/// to in the Mobile Broadband Provider database.
#[cfg(feature = "v1_22")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_22")))]
#[doc(alias = "auto-config")]
pub fn set_auto_config(&self, auto_config: bool) {
ObjectExt::set_property(self,"auto-config", auto_config)
}
/// The device unique identifier (as given by the WWAN management service)
/// which this connection applies to. If given, the connection will only
/// apply to the specified device.
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
#[doc(alias = "device-id")]
pub fn set_device_id(&self, device_id: Option<&str>) {
ObjectExt::set_property(self,"device-id", device_id)
}
/// When [`true`], only connections to the home network will be allowed.
/// Connections to roaming networks will not be made.
#[doc(alias = "home-only")]
pub fn set_home_only(&self, home_only: bool) {
ObjectExt::set_property(self,"home-only", home_only)
}
/// For LTE modems, this sets the APN for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
#[cfg(feature = "v1_44")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
#[doc(alias = "initial-eps-bearer-apn")]
pub fn initial_eps_bearer_apn(&self) -> Option<glib::GString> {
ObjectExt::property(self, "initial-eps-bearer-apn")
}
/// For LTE modems, this sets the APN for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
#[cfg(feature = "v1_44")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
#[doc(alias = "initial-eps-bearer-apn")]
pub fn set_initial_eps_bearer_apn(&self, initial_eps_bearer_apn: Option<&str>) {
ObjectExt::set_property(self,"initial-eps-bearer-apn", initial_eps_bearer_apn)
}
/// For LTE modems, this setting determines whether the initial EPS bearer
/// shall be configured when bringing up the connection. It is inferred TRUE
/// if initial-eps-bearer-apn is set.
#[cfg(feature = "v1_44")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
#[doc(alias = "initial-eps-bearer-configure")]
pub fn is_initial_eps_bearer_configure(&self) -> bool {
ObjectExt::property(self, "initial-eps-bearer-configure")
}
/// For LTE modems, this setting determines whether the initial EPS bearer
/// shall be configured when bringing up the connection. It is inferred TRUE
/// if initial-eps-bearer-apn is set.
#[cfg(feature = "v1_44")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
#[doc(alias = "initial-eps-bearer-configure")]
pub fn set_initial_eps_bearer_configure(&self, initial_eps_bearer_configure: bool) {
ObjectExt::set_property(self,"initial-eps-bearer-configure", initial_eps_bearer_configure)
}
/// For LTE modems, this sets NOAUTH authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
/// If [`true`], do not require the other side to authenticate itself to the client.
/// If [`false`], require authentication from the remote side. In almost all cases,
/// this should be [`true`].
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-noauth")]
pub fn is_initial_eps_bearer_noauth(&self) -> bool {
ObjectExt::property(self, "initial-eps-bearer-noauth")
}
/// For LTE modems, this sets NOAUTH authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
/// If [`true`], do not require the other side to authenticate itself to the client.
/// If [`false`], require authentication from the remote side. In almost all cases,
/// this should be [`true`].
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-noauth")]
pub fn set_initial_eps_bearer_noauth(&self, initial_eps_bearer_noauth: bool) {
ObjectExt::set_property(self,"initial-eps-bearer-noauth", initial_eps_bearer_noauth)
}
/// For LTE modems, this sets the password for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-password")]
pub fn initial_eps_bearer_password(&self) -> Option<glib::GString> {
ObjectExt::property(self, "initial-eps-bearer-password")
}
/// For LTE modems, this sets the password for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-password")]
pub fn set_initial_eps_bearer_password(&self, initial_eps_bearer_password: Option<&str>) {
ObjectExt::set_property(self,"initial-eps-bearer-password", initial_eps_bearer_password)
}
/// Flags indicating how to handle the #NMSettingGsm:initial-eps-bearer-password property.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-password-flags")]
pub fn initial_eps_bearer_password_flags(&self) -> SettingSecretFlags {
ObjectExt::property(self, "initial-eps-bearer-password-flags")
}
/// Flags indicating how to handle the #NMSettingGsm:initial-eps-bearer-password property.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-password-flags")]
pub fn set_initial_eps_bearer_password_flags(&self, initial_eps_bearer_password_flags: SettingSecretFlags) {
ObjectExt::set_property(self,"initial-eps-bearer-password-flags", initial_eps_bearer_password_flags)
}
/// For LTE modems, this disables CHAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-chap")]
pub fn is_initial_eps_bearer_refuse_chap(&self) -> bool {
ObjectExt::property(self, "initial-eps-bearer-refuse-chap")
}
/// For LTE modems, this disables CHAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-chap")]
pub fn set_initial_eps_bearer_refuse_chap(&self, initial_eps_bearer_refuse_chap: bool) {
ObjectExt::set_property(self,"initial-eps-bearer-refuse-chap", initial_eps_bearer_refuse_chap)
}
/// For LTE modems, this disables EAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-eap")]
pub fn is_initial_eps_bearer_refuse_eap(&self) -> bool {
ObjectExt::property(self, "initial-eps-bearer-refuse-eap")
}
/// For LTE modems, this disables EAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-eap")]
pub fn set_initial_eps_bearer_refuse_eap(&self, initial_eps_bearer_refuse_eap: bool) {
ObjectExt::set_property(self,"initial-eps-bearer-refuse-eap", initial_eps_bearer_refuse_eap)
}
/// For LTE modems, this disables MSCHAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-mschap")]
pub fn is_initial_eps_bearer_refuse_mschap(&self) -> bool {
ObjectExt::property(self, "initial-eps-bearer-refuse-mschap")
}
/// For LTE modems, this disables MSCHAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-mschap")]
pub fn set_initial_eps_bearer_refuse_mschap(&self, initial_eps_bearer_refuse_mschap: bool) {
ObjectExt::set_property(self,"initial-eps-bearer-refuse-mschap", initial_eps_bearer_refuse_mschap)
}
/// For LTE modems, this disables MSCHAPV2 authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-mschapv2")]
pub fn is_initial_eps_bearer_refuse_mschapv2(&self) -> bool {
ObjectExt::property(self, "initial-eps-bearer-refuse-mschapv2")
}
/// For LTE modems, this disables MSCHAPV2 authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-mschapv2")]
pub fn set_initial_eps_bearer_refuse_mschapv2(&self, initial_eps_bearer_refuse_mschapv2: bool) {
ObjectExt::set_property(self,"initial-eps-bearer-refuse-mschapv2", initial_eps_bearer_refuse_mschapv2)
}
/// For LTE modems, this disables PAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-pap")]
pub fn is_initial_eps_bearer_refuse_pap(&self) -> bool {
ObjectExt::property(self, "initial-eps-bearer-refuse-pap")
}
/// For LTE modems, this disables PAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-pap")]
pub fn set_initial_eps_bearer_refuse_pap(&self, initial_eps_bearer_refuse_pap: bool) {
ObjectExt::set_property(self,"initial-eps-bearer-refuse-pap", initial_eps_bearer_refuse_pap)
}
/// For LTE modems, this sets the username for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-username")]
pub fn initial_eps_bearer_username(&self) -> Option<glib::GString> {
ObjectExt::property(self, "initial-eps-bearer-username")
}
/// For LTE modems, this sets the username for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-username")]
pub fn set_initial_eps_bearer_username(&self, initial_eps_bearer_username: Option<&str>) {
ObjectExt::set_property(self,"initial-eps-bearer-username", initial_eps_bearer_username)
}
/// If non-zero, only transmit packets of the specified size or smaller,
/// breaking larger packets up into multiple frames.
#[cfg(feature = "v1_8")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_8")))]
pub fn set_mtu(&self, mtu: u32) {
ObjectExt::set_property(self,"mtu", mtu)
}
/// The Network ID (GSM LAI format, ie MCC-MNC) to force specific network
/// registration. If the Network ID is specified, NetworkManager will
/// attempt to force the device to register only on the specified network.
/// This can be used to ensure that the device does not roam when direct
/// roaming control of the device is not otherwise possible.
#[doc(alias = "network-id")]
pub fn set_network_id(&self, network_id: Option<&str>) {
ObjectExt::set_property(self,"network-id", network_id)
}
/// Legacy setting that used to help establishing PPP data sessions for
/// GSM-based modems.
///
/// # Deprecated since 1.16
///
/// User-provided values for this setting are no longer used.
#[cfg_attr(feature = "v1_16", deprecated = "Since 1.16")]
pub fn set_number(&self, number: Option<&str>) {
ObjectExt::set_property(self,"number", number)
}
/// The password used to authenticate with the network, if required. Many
/// providers do not require a password, or accept any password. But if a
/// password is required, it is specified here.
pub fn set_password(&self, password: Option<&str>) {
ObjectExt::set_property(self,"password", password)
}
/// Flags indicating how to handle the #NMSettingGsm:password property.
#[doc(alias = "password-flags")]
pub fn set_password_flags(&self, password_flags: SettingSecretFlags) {
ObjectExt::set_property(self,"password-flags", password_flags)
}
/// If the SIM is locked with a PIN it must be unlocked before any other
/// operations are requested. Specify the PIN here to allow operation of the
/// device.
pub fn set_pin(&self, pin: Option<&str>) {
ObjectExt::set_property(self,"pin", pin)
}
/// Flags indicating how to handle the #NMSettingGsm:pin property.
#[doc(alias = "pin-flags")]
pub fn set_pin_flags(&self, pin_flags: SettingSecretFlags) {
ObjectExt::set_property(self,"pin-flags", pin_flags)
}
/// The SIM card unique identifier (as given by the WWAN management service)
/// which this connection applies to. If given, the connection will apply
/// to any device also allowed by #NMSettingGsm:device-id which contains a
/// SIM card matching the given identifier.
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
#[doc(alias = "sim-id")]
pub fn set_sim_id(&self, sim_id: Option<&str>) {
ObjectExt::set_property(self,"sim-id", sim_id)
}
/// A MCC/MNC string like "310260" or "21601" identifying the specific
/// mobile network operator which this connection applies to. If given,
/// the connection will apply to any device also allowed by
/// #NMSettingGsm:device-id and #NMSettingGsm:sim-id which contains a SIM
/// card provisioned by the given operator.
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
#[doc(alias = "sim-operator-id")]
pub fn set_sim_operator_id(&self, sim_operator_id: Option<&str>) {
ObjectExt::set_property(self,"sim-operator-id", sim_operator_id)
}
/// The username used to authenticate with the network, if required. Many
/// providers do not require a username, or accept any username. But if a
/// username is required, it is specified here.
pub fn set_username(&self, username: Option<&str>) {
ObjectExt::set_property(self,"username", username)
}
#[doc(alias = "apn")]
pub fn connect_apn_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_apn_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::apn".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_apn_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_22")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_22")))]
#[doc(alias = "auto-config")]
pub fn connect_auto_config_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_auto_config_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::auto-config".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_auto_config_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
#[doc(alias = "device-id")]
pub fn connect_device_id_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_device_id_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::device-id".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_device_id_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "home-only")]
pub fn connect_home_only_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_home_only_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::home-only".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_home_only_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_44")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
#[doc(alias = "initial-eps-bearer-apn")]
pub fn connect_initial_eps_bearer_apn_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_eps_bearer_apn_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::initial-eps-bearer-apn".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_eps_bearer_apn_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_44")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
#[doc(alias = "initial-eps-bearer-configure")]
pub fn connect_initial_eps_bearer_configure_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_eps_bearer_configure_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::initial-eps-bearer-configure".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_eps_bearer_configure_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-noauth")]
pub fn connect_initial_eps_bearer_noauth_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_eps_bearer_noauth_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::initial-eps-bearer-noauth".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_eps_bearer_noauth_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-password")]
pub fn connect_initial_eps_bearer_password_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_eps_bearer_password_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::initial-eps-bearer-password".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_eps_bearer_password_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-password-flags")]
pub fn connect_initial_eps_bearer_password_flags_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_eps_bearer_password_flags_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::initial-eps-bearer-password-flags".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_eps_bearer_password_flags_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-chap")]
pub fn connect_initial_eps_bearer_refuse_chap_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_eps_bearer_refuse_chap_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::initial-eps-bearer-refuse-chap".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_eps_bearer_refuse_chap_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-eap")]
pub fn connect_initial_eps_bearer_refuse_eap_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_eps_bearer_refuse_eap_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::initial-eps-bearer-refuse-eap".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_eps_bearer_refuse_eap_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-mschap")]
pub fn connect_initial_eps_bearer_refuse_mschap_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_eps_bearer_refuse_mschap_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::initial-eps-bearer-refuse-mschap".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_eps_bearer_refuse_mschap_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-mschapv2")]
pub fn connect_initial_eps_bearer_refuse_mschapv2_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_eps_bearer_refuse_mschapv2_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::initial-eps-bearer-refuse-mschapv2".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_eps_bearer_refuse_mschapv2_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-refuse-pap")]
pub fn connect_initial_eps_bearer_refuse_pap_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_eps_bearer_refuse_pap_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::initial-eps-bearer-refuse-pap".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_eps_bearer_refuse_pap_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
#[doc(alias = "initial-eps-bearer-username")]
pub fn connect_initial_eps_bearer_username_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_eps_bearer_username_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::initial-eps-bearer-username".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_eps_bearer_username_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_8")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_8")))]
#[doc(alias = "mtu")]
pub fn connect_mtu_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_mtu_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::mtu".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_mtu_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "network-id")]
pub fn connect_network_id_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_network_id_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::network-id".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_network_id_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg_attr(feature = "v1_16", deprecated = "Since 1.16")]
#[doc(alias = "number")]
pub fn connect_number_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_number_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::number".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_number_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "password")]
pub fn connect_password_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_password_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::password".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_password_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "password-flags")]
pub fn connect_password_flags_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_password_flags_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::password-flags".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_password_flags_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "pin")]
pub fn connect_pin_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_pin_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::pin".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_pin_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "pin-flags")]
pub fn connect_pin_flags_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_pin_flags_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::pin-flags".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_pin_flags_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
#[doc(alias = "sim-id")]
pub fn connect_sim_id_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_sim_id_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::sim-id".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_sim_id_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
#[doc(alias = "sim-operator-id")]
pub fn connect_sim_operator_id_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_sim_operator_id_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::sim-operator-id".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_sim_operator_id_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "username")]
pub fn connect_username_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_username_trampoline<F: Fn(&SettingGsm) + 'static>(this: *mut ffi::NMSettingGsm, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, c"notify::username".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_username_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
}
impl Default for SettingGsm {
fn default() -> Self {
Self::new()
}
}
// rustdoc-stripper-ignore-next
/// A [builder-pattern] type to construct [`SettingGsm`] objects.
///
/// [builder-pattern]: https://doc.rust-lang.org/1.0.0/style/ownership/builders.html
#[must_use = "The builder must be built to be used"]
pub struct SettingGsmBuilder {
builder: glib::object::ObjectBuilder<'static, SettingGsm>,
}
impl SettingGsmBuilder {
fn new() -> Self {
Self { builder: glib::object::Object::builder() }
}
/// The GPRS Access Point Name specifying the APN used when establishing a
/// data session with the GSM-based network. The APN often determines how
/// the user will be billed for their network usage and whether the user has
/// access to the Internet or just a provider-specific walled-garden, so it
/// is important to use the correct APN for the user's mobile broadband plan.
/// The APN may only be composed of the characters a-z, 0-9, ., and - per GSM
/// 03.60 Section 14.9.
///
/// If the APN is unset (the default) then it may be detected based on
/// "auto-config" setting. The property can be explicitly set to the
/// empty string to prevent that and use no APN.
pub fn apn(self, apn: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("apn", apn.into()), }
}
/// When [`true`], the settings such as APN, username, or password will
/// default to values that match the network the modem will register
/// to in the Mobile Broadband Provider database.
#[cfg(feature = "v1_22")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_22")))]
pub fn auto_config(self, auto_config: bool) -> Self {
Self { builder: self.builder.property("auto-config", auto_config), }
}
/// The device unique identifier (as given by the WWAN management service)
/// which this connection applies to. If given, the connection will only
/// apply to the specified device.
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
pub fn device_id(self, device_id: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("device-id", device_id.into()), }
}
/// When [`true`], only connections to the home network will be allowed.
/// Connections to roaming networks will not be made.
pub fn home_only(self, home_only: bool) -> Self {
Self { builder: self.builder.property("home-only", home_only), }
}
/// For LTE modems, this sets the APN for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
#[cfg(feature = "v1_44")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
pub fn initial_eps_bearer_apn(self, initial_eps_bearer_apn: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("initial-eps-bearer-apn", initial_eps_bearer_apn.into()), }
}
/// For LTE modems, this setting determines whether the initial EPS bearer
/// shall be configured when bringing up the connection. It is inferred TRUE
/// if initial-eps-bearer-apn is set.
#[cfg(feature = "v1_44")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_44")))]
pub fn initial_eps_bearer_configure(self, initial_eps_bearer_configure: bool) -> Self {
Self { builder: self.builder.property("initial-eps-bearer-configure", initial_eps_bearer_configure), }
}
/// For LTE modems, this sets NOAUTH authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
/// If [`true`], do not require the other side to authenticate itself to the client.
/// If [`false`], require authentication from the remote side. In almost all cases,
/// this should be [`true`].
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
pub fn initial_eps_bearer_noauth(self, initial_eps_bearer_noauth: bool) -> Self {
Self { builder: self.builder.property("initial-eps-bearer-noauth", initial_eps_bearer_noauth), }
}
/// For LTE modems, this sets the password for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
pub fn initial_eps_bearer_password(self, initial_eps_bearer_password: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("initial-eps-bearer-password", initial_eps_bearer_password.into()), }
}
/// Flags indicating how to handle the #NMSettingGsm:initial-eps-bearer-password property.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
pub fn initial_eps_bearer_password_flags(self, initial_eps_bearer_password_flags: SettingSecretFlags) -> Self {
Self { builder: self.builder.property("initial-eps-bearer-password-flags", initial_eps_bearer_password_flags), }
}
/// For LTE modems, this disables CHAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
pub fn initial_eps_bearer_refuse_chap(self, initial_eps_bearer_refuse_chap: bool) -> Self {
Self { builder: self.builder.property("initial-eps-bearer-refuse-chap", initial_eps_bearer_refuse_chap), }
}
/// For LTE modems, this disables EAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
pub fn initial_eps_bearer_refuse_eap(self, initial_eps_bearer_refuse_eap: bool) -> Self {
Self { builder: self.builder.property("initial-eps-bearer-refuse-eap", initial_eps_bearer_refuse_eap), }
}
/// For LTE modems, this disables MSCHAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
pub fn initial_eps_bearer_refuse_mschap(self, initial_eps_bearer_refuse_mschap: bool) -> Self {
Self { builder: self.builder.property("initial-eps-bearer-refuse-mschap", initial_eps_bearer_refuse_mschap), }
}
/// For LTE modems, this disables MSCHAPV2 authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
pub fn initial_eps_bearer_refuse_mschapv2(self, initial_eps_bearer_refuse_mschapv2: bool) -> Self {
Self { builder: self.builder.property("initial-eps-bearer-refuse-mschapv2", initial_eps_bearer_refuse_mschapv2), }
}
/// For LTE modems, this disables PAP authentication method for the initial EPS bearer that is set
/// up when attaching to the network.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
pub fn initial_eps_bearer_refuse_pap(self, initial_eps_bearer_refuse_pap: bool) -> Self {
Self { builder: self.builder.property("initial-eps-bearer-refuse-pap", initial_eps_bearer_refuse_pap), }
}
/// For LTE modems, this sets the username for the initial EPS bearer that is set
/// up when attaching to the network. Setting this parameter implies
/// initial-eps-bearer-configure to be TRUE.
#[cfg(feature = "v1_52")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_52")))]
pub fn initial_eps_bearer_username(self, initial_eps_bearer_username: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("initial-eps-bearer-username", initial_eps_bearer_username.into()), }
}
/// If non-zero, only transmit packets of the specified size or smaller,
/// breaking larger packets up into multiple frames.
#[cfg(feature = "v1_8")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_8")))]
pub fn mtu(self, mtu: u32) -> Self {
Self { builder: self.builder.property("mtu", mtu), }
}
/// The Network ID (GSM LAI format, ie MCC-MNC) to force specific network
/// registration. If the Network ID is specified, NetworkManager will
/// attempt to force the device to register only on the specified network.
/// This can be used to ensure that the device does not roam when direct
/// roaming control of the device is not otherwise possible.
pub fn network_id(self, network_id: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("network-id", network_id.into()), }
}
/// Legacy setting that used to help establishing PPP data sessions for
/// GSM-based modems.
/// User-provided values for this setting are no longer used.
#[cfg_attr(feature = "v1_16", deprecated = "Since 1.16")]
pub fn number(self, number: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("number", number.into()), }
}
/// The password used to authenticate with the network, if required. Many
/// providers do not require a password, or accept any password. But if a
/// password is required, it is specified here.
pub fn password(self, password: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("password", password.into()), }
}
/// Flags indicating how to handle the #NMSettingGsm:password property.
pub fn password_flags(self, password_flags: SettingSecretFlags) -> Self {
Self { builder: self.builder.property("password-flags", password_flags), }
}
/// If the SIM is locked with a PIN it must be unlocked before any other
/// operations are requested. Specify the PIN here to allow operation of the
/// device.
pub fn pin(self, pin: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("pin", pin.into()), }
}
/// Flags indicating how to handle the #NMSettingGsm:pin property.
pub fn pin_flags(self, pin_flags: SettingSecretFlags) -> Self {
Self { builder: self.builder.property("pin-flags", pin_flags), }
}
/// The SIM card unique identifier (as given by the WWAN management service)
/// which this connection applies to. If given, the connection will apply
/// to any device also allowed by #NMSettingGsm:device-id which contains a
/// SIM card matching the given identifier.
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
pub fn sim_id(self, sim_id: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("sim-id", sim_id.into()), }
}
/// A MCC/MNC string like "310260" or "21601" identifying the specific
/// mobile network operator which this connection applies to. If given,
/// the connection will apply to any device also allowed by
/// #NMSettingGsm:device-id and #NMSettingGsm:sim-id which contains a SIM
/// card provisioned by the given operator.
#[cfg(feature = "v1_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_2")))]
pub fn sim_operator_id(self, sim_operator_id: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("sim-operator-id", sim_operator_id.into()), }
}
/// The username used to authenticate with the network, if required. Many
/// providers do not require a username, or accept any username. But if a
/// username is required, it is specified here.
pub fn username(self, username: impl Into<glib::GString>) -> Self {
Self { builder: self.builder.property("username", username.into()), }
}
// rustdoc-stripper-ignore-next
/// Build the [`SettingGsm`].
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> SettingGsm {
assert_initialized_main_thread!();
self.builder.build() }
}