#[repr(C)]pub struct BeaconNotifyIndication {
pub sdu_ptr: *const u8,
pub pan_descriptor: PanDescriptor,
pub addr_list: [MacAddress; 7],
pub bsn: u8,
pub pend_addr_spec: u8,
pub sdu_length: u8,
}
Expand description
MLME BEACON NOTIIFY Indication which is used to send parameters contained within a beacon frame received by the MAC to the application
Fields§
§sdu_ptr: *const u8
he set of octets comprising the beacon payload to be transferred from the MAC sublayer entity to the next higher layer
pan_descriptor: PanDescriptor
The PAN Descriptor for the received beacon
addr_list: [MacAddress; 7]
The list of addresses of the devices
bsn: u8
Beacon Sequence Number
pend_addr_spec: u8
The beacon pending address specification
sdu_length: u8
Number of octets contained in the beacon payload of the beacon frame
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BeaconNotifyIndication
impl RefUnwindSafe for BeaconNotifyIndication
impl !Send for BeaconNotifyIndication
impl !Sync for BeaconNotifyIndication
impl Unpin for BeaconNotifyIndication
impl UnwindSafe for BeaconNotifyIndication
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more