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
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// WARNING: THIS FILE IS MACHINE GENERATED. DO NOT EDIT.
// Generated from the fuchsia.wlan.fullmac banjo file

#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_imports, non_camel_case_types)]

use fuchsia_zircon_types as zircon_types;
use banjo_fuchsia_wlan_common as fuchsia_wlan_common;
use fuchsia_wlan_common::*;
use banjo_fuchsia_wlan_ieee80211 as fuchsia_wlan_ieee80211;
use fuchsia_wlan_ieee80211::*;
use banjo_fuchsia_wlan_internal as fuchsia_wlan_internal;
use fuchsia_wlan_internal::*;

pub const WLAN_FULLMAC_MAX_HISTOGRAMS_PER_TYPE: u8 = 8;
pub const WLAN_FULLMAC_MAX_NOISE_FLOOR_SAMPLES: u8 = 255;
pub const WLAN_FULLMAC_MAX_RSSI_SAMPLES: u8 = 255;
pub const WLAN_FULLMAC_MAX_RX_RATE_INDEX_SAMPLES: u8 = 196;
pub const WLAN_FULLMAC_MAX_SNR_SAMPLES: u16 = 256;
pub const WLAN_FULLMAC_NUM_RATES_AC: u8 = 120;
pub const WLAN_FULLMAC_NUM_RATES_B: u8 = 4;
pub const WLAN_FULLMAC_NUM_RATES_G: u8 = 8;
pub const WLAN_FULLMAC_NUM_RATES_N: u8 = 64;
pub const WLAN_MAX_KEYLIST_SIZE: u32 = 4;
pub const WLAN_VIE_MAX_LEN: u32 = 514;
#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct DeleteKeyDescriptor {
    pub key_id: u16,
    pub key_type: WlanKeyType,
    pub address: [u8; 6 as usize],
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacAntennaId {
    pub freq: WlanFullmacAntennaFreq,
    pub index: u8,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacAssocInd {
    pub peer_sta_address: [u8; 6 as usize],
    pub listen_interval: u16,
    pub ssid: CSsid,
    pub rsne_len: u64,
    pub rsne: [u8; 257 as usize],
    pub vendor_ie_len: u64,
    pub vendor_ie: [u8; 514 as usize],
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacAuthInd {
    pub peer_sta_address: [u8; 6 as usize],
    pub auth_type: WlanAuthType,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacBandCapability {
    pub band: WlanBand,
    pub basic_rate_count: u8,
    pub basic_rate_list: [u8; 12 as usize],
    pub ht_supported: bool,
    pub ht_caps: HtCapabilities,
    pub vht_supported: bool,
    pub vht_caps: VhtCapabilities,
    pub operating_channel_count: u16,
    pub operating_channel_list: [u8; 256 as usize],
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacChannelSwitchInfo {
    pub new_channel: u8,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacConnectConfirm {
    pub peer_sta_address: [u8; 6 as usize],
    pub result_code: StatusCode,
    pub association_id: u16,
    pub association_ies_list: *const u8,
    pub association_ies_count: usize,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacDeauthIndication {
    pub peer_sta_address: [u8; 6 as usize],
    pub reason_code: ReasonCode,
    pub locally_initiated: bool,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacDelKeysReq {
    pub num_keys: u64,
    pub keylist: [DeleteKeyDescriptor; 4 as usize],
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacDisassocConfirm {
    pub status: zircon_types::zx_status_t,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacDisassocIndication {
    pub peer_sta_address: [u8; 6 as usize],
    pub reason_code: ReasonCode,
    pub locally_initiated: bool,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacEapolConfirm {
    pub result_code: WlanEapolResult,
    pub dst_addr: [u8; 6 as usize],
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacEapolIndication {
    pub src_addr: [u8; 6 as usize],
    pub dst_addr: [u8; 6 as usize],
    pub data_list: *const u8,
    pub data_count: usize,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacHistBucket {
    pub bucket_index: u16,
    pub num_samples: u64,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacIfaceCounterStats {
    pub rx_unicast_total: u64,
    pub rx_unicast_drop: u64,
    pub rx_multicast: u64,
    pub tx_total: u64,
    pub tx_drop: u64,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacNoiseFloorHistogram {
    pub hist_scope: WlanFullmacHistScope,
    pub antenna_id: WlanFullmacAntennaId,
    pub noise_floor_samples_list: *const WlanFullmacHistBucket,
    pub noise_floor_samples_count: usize,
    pub invalid_samples: u64,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacRssiHistogram {
    pub hist_scope: WlanFullmacHistScope,
    pub antenna_id: WlanFullmacAntennaId,
    pub rssi_samples_list: *const WlanFullmacHistBucket,
    pub rssi_samples_count: usize,
    pub invalid_samples: u64,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacRxRateIndexHistogram {
    pub hist_scope: WlanFullmacHistScope,
    pub antenna_id: WlanFullmacAntennaId,
    pub rx_rate_index_samples_list: *const WlanFullmacHistBucket,
    pub rx_rate_index_samples_count: usize,
    pub invalid_samples: u64,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacSnrHistogram {
    pub hist_scope: WlanFullmacHistScope,
    pub antenna_id: WlanFullmacAntennaId,
    pub snr_samples_list: *const WlanFullmacHistBucket,
    pub snr_samples_count: usize,
    pub invalid_samples: u64,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacQueryInfo {
    pub sta_addr: [u8; 6 as usize],
    pub role: WlanMacRole,
    pub band_cap_list: [WlanFullmacBandCapability; 16 as usize],
    pub band_cap_count: u8,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacSetKeysReq {
    pub num_keys: u64,
    pub keylist: [WlanKeyConfig; 4 as usize],
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacSetKeysResp {
    pub num_keys: u64,
    pub statuslist: [i32; 4 as usize],
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacSaeHandshakeResp {
    pub peer_sta_address: [u8; 6 as usize],
    pub status_code: StatusCode,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacSaeFrame {
    pub peer_sta_address: [u8; 6 as usize],
    pub status_code: StatusCode,
    pub seq_num: u16,
    pub sae_fields_list: *const u8,
    pub sae_fields_count: usize,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacScanResult {
    pub txn_id: u64,
    pub timestamp_nanos: zircon_types::zx_time_t,
    pub bss: BssDescription,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacScanEnd {
    pub txn_id: u64,
    pub code: WlanScanResult,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacRoamConfirm {
    pub target_bssid: [u8; 6 as usize],
    pub result_code: StatusCode,
    pub selected_bss: BssDescription,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacStartConfirm {
    pub result_code: WlanStartResult,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacStopConfirm {
    pub result_code: WlanStopResult,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacSignalReportIndication {
    pub rssi_dbm: i8,
    pub snr_db: i8,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacPmkInfo {
    pub pmk_list: *const u8,
    pub pmk_count: usize,
    pub pmkid_list: *const u8,
    pub pmkid_count: usize,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacSaeHandshakeInd {
    pub peer_sta_address: [u8; 6 as usize],
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacRssiStats {
    pub hist_list: *const u64,
    pub hist_count: usize,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacIfaceHistogramStats {
    pub noise_floor_histograms_list: *const WlanFullmacNoiseFloorHistogram,
    pub noise_floor_histograms_count: usize,
    pub rssi_histograms_list: *const WlanFullmacRssiHistogram,
    pub rssi_histograms_count: usize,
    pub rx_rate_index_histograms_list: *const WlanFullmacRxRateIndexHistogram,
    pub rx_rate_index_histograms_count: usize,
    pub snr_histograms_list: *const WlanFullmacSnrHistogram,
    pub snr_histograms_count: usize,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacImplBaseStartScanRequest {
    pub txn_id: u64,
    pub scan_type: WlanScanType,
    pub channels_list: *const u8,
    pub channels_count: usize,
    pub ssids_list: *const CSsid,
    pub ssids_count: usize,
    pub min_channel_time: u32,
    pub max_channel_time: u32,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacImplBaseConnectRequest {
    pub selected_bss: BssDescription,
    pub connect_failure_timeout: u32,
    pub auth_type: WlanAuthType,
    pub sae_password_list: *const u8,
    pub sae_password_count: usize,
    pub wep_key: WlanKeyConfig,
    pub security_ie_list: *const u8,
    pub security_ie_count: usize,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacImplBaseReconnectRequest {
    pub peer_sta_address: [u8; 6 as usize],
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacImplBaseAuthRespRequest {
    pub peer_sta_address: [u8; 6 as usize],
    pub result_code: WlanAuthResult,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacImplBaseDeauthRequest {
    pub peer_sta_address: [u8; 6 as usize],
    pub reason_code: ReasonCode,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacImplBaseAssocRespRequest {
    pub peer_sta_address: [u8; 6 as usize],
    pub result_code: WlanAssocResult,
    pub association_id: u16,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacImplBaseDisassocRequest {
    pub peer_sta_address: [u8; 6 as usize],
    pub reason_code: ReasonCode,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacImplBaseResetRequest {
    pub sta_address: [u8; 6 as usize],
    pub set_default_mib: bool,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacImplBaseStartBssRequest {
    pub ssid: CSsid,
    pub bss_type: BssType,
    pub beacon_period: u32,
    pub dtim_period: u32,
    pub channel: u8,
    pub rsne_list: *const u8,
    pub rsne_count: usize,
    pub vendor_ie_list: *const u8,
    pub vendor_ie_count: usize,
}

#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct WlanFullmacImplBaseStopBssRequest {
    pub ssid: CSsid,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacImplBaseEapolTxRequest {
    pub src_addr: [u8; 6 as usize],
    pub dst_addr: [u8; 6 as usize],
    pub data_list: *const u8,
    pub data_count: usize,
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct WlanFullmacImplIfcBaseDeauthConfRequest {
    pub peer_sta_address: [u8; 6 as usize],
}

#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct WlanAssocResult(pub u8);

impl WlanAssocResult {
    pub const SUCCESS: Self = Self(0);
    pub const REFUSED_REASON_UNSPECIFIED: Self = Self(1);
    pub const REFUSED_NOT_AUTHENTICATED: Self = Self(2);
    pub const REFUSED_CAPABILITIES_MISMATCH: Self = Self(3);
    pub const REFUSED_EXTERNAL_REASON: Self = Self(4);
    pub const REFUSED_AP_OUT_OF_MEMORY: Self = Self(5);
    pub const REFUSED_BASIC_RATES_MISMATCH: Self = Self(6);
    pub const REJECTED_EMERGENCY_SERVICES_NOT_SUPPORTED: Self = Self(7);
    pub const REFUSED_TEMPORARILY: Self = Self(8);
}

impl std::ops::BitAnd for WlanAssocResult {
    type Output = Self;
    fn bitand(self, rhs: Self) -> Self {
        Self(self.0 & rhs.0)
    }
}

impl std::ops::BitAndAssign for WlanAssocResult {
    fn bitand_assign(&mut self, rhs: Self) {
        *self = Self(self.0 & rhs.0)
    }
}

impl std::ops::BitOr for WlanAssocResult {
    type Output = Self;
    fn bitor(self, rhs: Self) -> Self {
        Self(self.0 | rhs.0)
    }
}

impl std::ops::BitOrAssign for WlanAssocResult {
    fn bitor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 | rhs.0)
    }
}

impl std::ops::BitXor for WlanAssocResult {
    type Output = Self;
    fn bitxor(self, rhs: Self) -> Self {
        Self(self.0 ^ rhs.0)
    }
}

impl std::ops::BitXorAssign for WlanAssocResult {
    fn bitxor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 ^ rhs.0)
    }
}
#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct WlanAuthResult(pub u8);

impl WlanAuthResult {
    pub const SUCCESS: Self = Self(0);
    pub const REFUSED: Self = Self(1);
    pub const ANTI_CLOGGING_TOKEN_REQUIRED: Self = Self(2);
    pub const FINITE_CYCLIC_GROUP_NOT_SUPPORTED: Self = Self(3);
    pub const REJECTED: Self = Self(4);
    pub const FAILURE_TIMEOUT: Self = Self(5);
}

impl std::ops::BitAnd for WlanAuthResult {
    type Output = Self;
    fn bitand(self, rhs: Self) -> Self {
        Self(self.0 & rhs.0)
    }
}

impl std::ops::BitAndAssign for WlanAuthResult {
    fn bitand_assign(&mut self, rhs: Self) {
        *self = Self(self.0 & rhs.0)
    }
}

impl std::ops::BitOr for WlanAuthResult {
    type Output = Self;
    fn bitor(self, rhs: Self) -> Self {
        Self(self.0 | rhs.0)
    }
}

impl std::ops::BitOrAssign for WlanAuthResult {
    fn bitor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 | rhs.0)
    }
}

impl std::ops::BitXor for WlanAuthResult {
    type Output = Self;
    fn bitxor(self, rhs: Self) -> Self {
        Self(self.0 ^ rhs.0)
    }
}

impl std::ops::BitXorAssign for WlanAuthResult {
    fn bitxor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 ^ rhs.0)
    }
}
#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct WlanAuthType(pub u8);

impl WlanAuthType {
    pub const OPEN_SYSTEM: Self = Self(1);
    pub const SHARED_KEY: Self = Self(2);
    pub const FAST_BSS_TRANSITION: Self = Self(3);
    pub const SAE: Self = Self(4);
}

impl std::ops::BitAnd for WlanAuthType {
    type Output = Self;
    fn bitand(self, rhs: Self) -> Self {
        Self(self.0 & rhs.0)
    }
}

impl std::ops::BitAndAssign for WlanAuthType {
    fn bitand_assign(&mut self, rhs: Self) {
        *self = Self(self.0 & rhs.0)
    }
}

impl std::ops::BitOr for WlanAuthType {
    type Output = Self;
    fn bitor(self, rhs: Self) -> Self {
        Self(self.0 | rhs.0)
    }
}

impl std::ops::BitOrAssign for WlanAuthType {
    fn bitor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 | rhs.0)
    }
}

impl std::ops::BitXor for WlanAuthType {
    type Output = Self;
    fn bitxor(self, rhs: Self) -> Self {
        Self(self.0 ^ rhs.0)
    }
}

impl std::ops::BitXorAssign for WlanAuthType {
    fn bitxor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 ^ rhs.0)
    }
}
#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct WlanEapolResult(pub u8);

impl WlanEapolResult {
    pub const SUCCESS: Self = Self(0);
    pub const TRANSMISSION_FAILURE: Self = Self(1);
}

impl std::ops::BitAnd for WlanEapolResult {
    type Output = Self;
    fn bitand(self, rhs: Self) -> Self {
        Self(self.0 & rhs.0)
    }
}

impl std::ops::BitAndAssign for WlanEapolResult {
    fn bitand_assign(&mut self, rhs: Self) {
        *self = Self(self.0 & rhs.0)
    }
}

impl std::ops::BitOr for WlanEapolResult {
    type Output = Self;
    fn bitor(self, rhs: Self) -> Self {
        Self(self.0 | rhs.0)
    }
}

impl std::ops::BitOrAssign for WlanEapolResult {
    fn bitor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 | rhs.0)
    }
}

impl std::ops::BitXor for WlanEapolResult {
    type Output = Self;
    fn bitxor(self, rhs: Self) -> Self {
        Self(self.0 ^ rhs.0)
    }
}

impl std::ops::BitXorAssign for WlanEapolResult {
    fn bitxor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 ^ rhs.0)
    }
}
#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct WlanFullmacAntennaFreq(pub u8);

impl WlanFullmacAntennaFreq {
    pub const ANTENNA_2_G: Self = Self(1);
    pub const ANTENNA_5_G: Self = Self(2);
}

impl std::ops::BitAnd for WlanFullmacAntennaFreq {
    type Output = Self;
    fn bitand(self, rhs: Self) -> Self {
        Self(self.0 & rhs.0)
    }
}

impl std::ops::BitAndAssign for WlanFullmacAntennaFreq {
    fn bitand_assign(&mut self, rhs: Self) {
        *self = Self(self.0 & rhs.0)
    }
}

impl std::ops::BitOr for WlanFullmacAntennaFreq {
    type Output = Self;
    fn bitor(self, rhs: Self) -> Self {
        Self(self.0 | rhs.0)
    }
}

impl std::ops::BitOrAssign for WlanFullmacAntennaFreq {
    fn bitor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 | rhs.0)
    }
}

impl std::ops::BitXor for WlanFullmacAntennaFreq {
    type Output = Self;
    fn bitxor(self, rhs: Self) -> Self {
        Self(self.0 ^ rhs.0)
    }
}

impl std::ops::BitXorAssign for WlanFullmacAntennaFreq {
    fn bitxor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 ^ rhs.0)
    }
}
#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct WlanFullmacHistScope(pub u8);

impl WlanFullmacHistScope {
    pub const STATION: Self = Self(1);
    pub const PER_ANTENNA: Self = Self(2);
}

impl std::ops::BitAnd for WlanFullmacHistScope {
    type Output = Self;
    fn bitand(self, rhs: Self) -> Self {
        Self(self.0 & rhs.0)
    }
}

impl std::ops::BitAndAssign for WlanFullmacHistScope {
    fn bitand_assign(&mut self, rhs: Self) {
        *self = Self(self.0 & rhs.0)
    }
}

impl std::ops::BitOr for WlanFullmacHistScope {
    type Output = Self;
    fn bitor(self, rhs: Self) -> Self {
        Self(self.0 | rhs.0)
    }
}

impl std::ops::BitOrAssign for WlanFullmacHistScope {
    fn bitor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 | rhs.0)
    }
}

impl std::ops::BitXor for WlanFullmacHistScope {
    type Output = Self;
    fn bitxor(self, rhs: Self) -> Self {
        Self(self.0 ^ rhs.0)
    }
}

impl std::ops::BitXorAssign for WlanFullmacHistScope {
    fn bitxor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 ^ rhs.0)
    }
}
#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct WlanScanType(pub u8);

impl WlanScanType {
    pub const ACTIVE: Self = Self(1);
    pub const PASSIVE: Self = Self(2);
}

impl std::ops::BitAnd for WlanScanType {
    type Output = Self;
    fn bitand(self, rhs: Self) -> Self {
        Self(self.0 & rhs.0)
    }
}

impl std::ops::BitAndAssign for WlanScanType {
    fn bitand_assign(&mut self, rhs: Self) {
        *self = Self(self.0 & rhs.0)
    }
}

impl std::ops::BitOr for WlanScanType {
    type Output = Self;
    fn bitor(self, rhs: Self) -> Self {
        Self(self.0 | rhs.0)
    }
}

impl std::ops::BitOrAssign for WlanScanType {
    fn bitor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 | rhs.0)
    }
}

impl std::ops::BitXor for WlanScanType {
    type Output = Self;
    fn bitxor(self, rhs: Self) -> Self {
        Self(self.0 ^ rhs.0)
    }
}

impl std::ops::BitXorAssign for WlanScanType {
    fn bitxor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 ^ rhs.0)
    }
}
#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct WlanScanResult(pub u8);

impl WlanScanResult {
    pub const SUCCESS: Self = Self(0);
    pub const NOT_SUPPORTED: Self = Self(1);
    pub const INVALID_ARGS: Self = Self(2);
    pub const INTERNAL_ERROR: Self = Self(3);
    pub const SHOULD_WAIT: Self = Self(4);
    pub const CANCELED_BY_DRIVER_OR_FIRMWARE: Self = Self(5);
}

impl std::ops::BitAnd for WlanScanResult {
    type Output = Self;
    fn bitand(self, rhs: Self) -> Self {
        Self(self.0 & rhs.0)
    }
}

impl std::ops::BitAndAssign for WlanScanResult {
    fn bitand_assign(&mut self, rhs: Self) {
        *self = Self(self.0 & rhs.0)
    }
}

impl std::ops::BitOr for WlanScanResult {
    type Output = Self;
    fn bitor(self, rhs: Self) -> Self {
        Self(self.0 | rhs.0)
    }
}

impl std::ops::BitOrAssign for WlanScanResult {
    fn bitor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 | rhs.0)
    }
}

impl std::ops::BitXor for WlanScanResult {
    type Output = Self;
    fn bitxor(self, rhs: Self) -> Self {
        Self(self.0 ^ rhs.0)
    }
}

impl std::ops::BitXorAssign for WlanScanResult {
    fn bitxor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 ^ rhs.0)
    }
}
#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct WlanStartResult(pub u8);

impl WlanStartResult {
    pub const SUCCESS: Self = Self(0);
    pub const BSS_ALREADY_STARTED_OR_JOINED: Self = Self(1);
    pub const RESET_REQUIRED_BEFORE_START: Self = Self(2);
    pub const NOT_SUPPORTED: Self = Self(3);
}

impl std::ops::BitAnd for WlanStartResult {
    type Output = Self;
    fn bitand(self, rhs: Self) -> Self {
        Self(self.0 & rhs.0)
    }
}

impl std::ops::BitAndAssign for WlanStartResult {
    fn bitand_assign(&mut self, rhs: Self) {
        *self = Self(self.0 & rhs.0)
    }
}

impl std::ops::BitOr for WlanStartResult {
    type Output = Self;
    fn bitor(self, rhs: Self) -> Self {
        Self(self.0 | rhs.0)
    }
}

impl std::ops::BitOrAssign for WlanStartResult {
    fn bitor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 | rhs.0)
    }
}

impl std::ops::BitXor for WlanStartResult {
    type Output = Self;
    fn bitxor(self, rhs: Self) -> Self {
        Self(self.0 ^ rhs.0)
    }
}

impl std::ops::BitXorAssign for WlanStartResult {
    fn bitxor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 ^ rhs.0)
    }
}
#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct WlanStopResult(pub u8);

impl WlanStopResult {
    pub const SUCCESS: Self = Self(0);
    pub const BSS_ALREADY_STOPPED: Self = Self(1);
    pub const INTERNAL_ERROR: Self = Self(2);
}

impl std::ops::BitAnd for WlanStopResult {
    type Output = Self;
    fn bitand(self, rhs: Self) -> Self {
        Self(self.0 & rhs.0)
    }
}

impl std::ops::BitAndAssign for WlanStopResult {
    fn bitand_assign(&mut self, rhs: Self) {
        *self = Self(self.0 & rhs.0)
    }
}

impl std::ops::BitOr for WlanStopResult {
    type Output = Self;
    fn bitor(self, rhs: Self) -> Self {
        Self(self.0 | rhs.0)
    }
}

impl std::ops::BitOrAssign for WlanStopResult {
    fn bitor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 | rhs.0)
    }
}

impl std::ops::BitXor for WlanStopResult {
    type Output = Self;
    fn bitxor(self, rhs: Self) -> Self {
        Self(self.0 ^ rhs.0)
    }
}

impl std::ops::BitXorAssign for WlanStopResult {
    fn bitxor_assign(&mut self, rhs: Self) {
        *self = Self(self.0 ^ rhs.0)
    }
}