pub struct Msdu<B> {
    pub dst_addr: MacAddr,
    pub src_addr: MacAddr,
    pub llc_frame: LlcFrame<B>,
}Expand description
A single MSDU.
Fields§
§dst_addr: MacAddr§src_addr: MacAddr§llc_frame: LlcFrame<B>Implementations§
Auto Trait Implementations§
impl<B> Freeze for Msdu<B>where
    B: Freeze,
impl<B> RefUnwindSafe for Msdu<B>where
    B: RefUnwindSafe,
impl<B> Send for Msdu<B>where
    B: Send,
impl<B> Sync for Msdu<B>where
    B: Sync,
impl<B> Unpin for Msdu<B>where
    B: Unpin,
impl<B> UnwindSafe for Msdu<B>where
    B: UnwindSafe,
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