pub struct AuxFrameHeader {
pub security_control: SecurityControl,
pub frame_counter: u32,
pub source_address: Option<IeeeAddress>,
pub key_sequence_numner: Option<u8>,
}Expand description
Auxiliary Frame Header Format
See Section 4.5.1.
Fields§
§security_control: SecurityControlSecurity control
frame_counter: u32Frame counter
source_address: Option<IeeeAddress>Set only if SecurityControl::extended_nonce is true.
key_sequence_numner: Option<u8>Set only if SecurityControl::key_identifier is 1.
Trait Implementations§
Source§impl Debug for AuxFrameHeader
impl Debug for AuxFrameHeader
Source§impl<'a, C: Default> TryRead<'a, C> for AuxFrameHeader
impl<'a, C: Default> TryRead<'a, C> for AuxFrameHeader
Auto Trait Implementations§
impl Freeze for AuxFrameHeader
impl RefUnwindSafe for AuxFrameHeader
impl Send for AuxFrameHeader
impl Sync for AuxFrameHeader
impl Unpin for AuxFrameHeader
impl UnwindSafe for AuxFrameHeader
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