pub enum VendorIe<B: SplitByteSlice> {
    MsftLegacyWpa(B),
    Wsc(B),
    WmmInfo(B),
    WmmParam(B),
    Unknown {
        oui: Oui,
        body: B,
    },
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<B> Freeze for VendorIe<B>where
    B: Freeze,
impl<B> RefUnwindSafe for VendorIe<B>where
    B: RefUnwindSafe,
impl<B> Send for VendorIe<B>where
    B: Send,
impl<B> Sync for VendorIe<B>where
    B: Sync,
impl<B> Unpin for VendorIe<B>where
    B: Unpin,
impl<B> UnwindSafe for VendorIe<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