embassy-stm32-wpan

Crates

git

Versions

default

Flavors

embassy_stm32_wpan::mac::typedefs

Struct PanDescriptor

Source
pub struct PanDescriptor {
    pub coord_pan_id: PanId,
    pub coord_addr_mode: AddressMode,
    pub logical_channel: MacChannel,
    pub coord_addr: MacAddress,
    pub channel_page: u8,
    pub gts_permit: bool,
    pub superframe_spec: [u8; 2],
    pub time_stamp: [u8; 4],
    pub link_quality: u8,
    pub security_level: u8,
}
Expand description

MAC PAN Descriptor which contains the network details of the device from which the beacon is received

Fields§

§coord_pan_id: PanId

PAN identifier of the coordinator

§coord_addr_mode: AddressMode

Coordinator addressing mode

§logical_channel: MacChannel

The current logical channel occupied by the network

§coord_addr: MacAddress

Coordinator address

§channel_page: u8

The current channel page occupied by the network

§gts_permit: bool

PAN coordinator is accepting GTS requests or not

§superframe_spec: [u8; 2]

Superframe specification as specified in the received beacon frame

§time_stamp: [u8; 4]

The time at which the beacon frame was received, in symbols

§link_quality: u8

The LQI at which the network beacon was received

§security_level: u8

Security level purportedly used by the received beacon frame

Trait Implementations§

Source§

impl Clone for PanDescriptor

Source§

fn clone(&self) -> PanDescriptor

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PanDescriptor

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PanDescriptor

Source§

fn default() -> PanDescriptor

Returns the “default value” for a type. Read more
Source§

impl TryFrom<&[u8]> for PanDescriptor

Source§

type Error = ()

The type returned in the event of a conversion error.
Source§

fn try_from(buf: &[u8]) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Copy for PanDescriptor

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.