aboutsummaryrefslogtreecommitdiff
path: root/src/structs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/structs.rs')
-rw-r--r--src/structs.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/structs.rs b/src/structs.rs
index d01d5a65c..3b646e1a8 100644
--- a/src/structs.rs
+++ b/src/structs.rs
@@ -392,6 +392,15 @@ impl_bytes!(PassphraseInfo);
392#[derive(Clone, Copy)] 392#[derive(Clone, Copy)]
393#[cfg_attr(feature = "defmt", derive(defmt::Format))] 393#[cfg_attr(feature = "defmt", derive(defmt::Format))]
394#[repr(C)] 394#[repr(C)]
395pub struct SsidInfoWithIndex {
396 pub index: u32,
397 pub ssid_info: SsidInfo,
398}
399impl_bytes!(SsidInfoWithIndex);
400
401#[derive(Clone, Copy)]
402#[cfg_attr(feature = "defmt", derive(defmt::Format))]
403#[repr(C)]
395pub struct EventMask { 404pub struct EventMask {
396 pub iface: u32, 405 pub iface: u32,
397 pub events: [u8; 24], 406 pub events: [u8; 24],