pub struct AESCCMPacket {
pub inner: Vec<u8, { _ }>,
}Expand description
A stack-allocated serialized packet buffer.
Utilizes heapless::Vec under the hood to ensure fixed-allocation and static safety
in no_std environments.
Fields§
§inner: Vec<u8, { _ }>The backing byte array containing the serialized over-the-air frame.
Implementations§
Source§impl AESCCMPacket
impl AESCCMPacket
Trait Implementations§
Source§impl Debug for AESCCMPacket
impl Debug for AESCCMPacket
Auto Trait Implementations§
impl Freeze for AESCCMPacket
impl RefUnwindSafe for AESCCMPacket
impl Send for AESCCMPacket
impl Sync for AESCCMPacket
impl Unpin for AESCCMPacket
impl UnsafeUnpin for AESCCMPacket
impl UnwindSafe for AESCCMPacket
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