pub enum UnverifiedKeyData<B: SplitByteSlice> {
Encrypted(EncryptedKeyData<B>),
NotEncrypted(KeyFrameRx<B>),
}
Expand description
Carries an EAPOL Key frame and requires MIC verification if the MIC bit of the frame’s info field is set.
Variants§
Encrypted(EncryptedKeyData<B>)
NotEncrypted(KeyFrameRx<B>)
Auto Trait Implementations§
impl<B> Freeze for UnverifiedKeyData<B>where
B: Freeze,
impl<B> RefUnwindSafe for UnverifiedKeyData<B>where
B: RefUnwindSafe,
impl<B> Send for UnverifiedKeyData<B>where
B: Send,
impl<B> Sync for UnverifiedKeyData<B>where
B: Sync,
impl<B> Unpin for UnverifiedKeyData<B>where
B: Unpin,
impl<B> UnwindSafe for UnverifiedKeyData<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