pub struct Dot11EltMicrosoftWPA {
pub version: u16,
pub group_cipher: CipherSuite,
pub pairwise_ciphers: Vec<CipherSuite>,
pub akm_suites: Vec<AkmSuite>,
}Expand description
Microsoft WPA Information Element (WPA1).
This is a Vendor Specific IE (ID=221) with Microsoft OUI and type=1. The structure is similar to RSN but with WPA OUI (00:50:F2).
Fields§
§version: u16WPA version (should be 1).
group_cipher: CipherSuiteGroup cipher suite.
pairwise_ciphers: Vec<CipherSuite>Pairwise cipher suites.
akm_suites: Vec<AkmSuite>AKM suites.
Implementations§
Trait Implementations§
Source§impl Clone for Dot11EltMicrosoftWPA
impl Clone for Dot11EltMicrosoftWPA
Source§fn clone(&self) -> Dot11EltMicrosoftWPA
fn clone(&self) -> Dot11EltMicrosoftWPA
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Dot11EltMicrosoftWPA
impl Debug for Dot11EltMicrosoftWPA
Source§impl PartialEq for Dot11EltMicrosoftWPA
impl PartialEq for Dot11EltMicrosoftWPA
impl Eq for Dot11EltMicrosoftWPA
impl StructuralPartialEq for Dot11EltMicrosoftWPA
Auto Trait Implementations§
impl Freeze for Dot11EltMicrosoftWPA
impl RefUnwindSafe for Dot11EltMicrosoftWPA
impl Send for Dot11EltMicrosoftWPA
impl Sync for Dot11EltMicrosoftWPA
impl Unpin for Dot11EltMicrosoftWPA
impl UnsafeUnpin for Dot11EltMicrosoftWPA
impl UnwindSafe for Dot11EltMicrosoftWPA
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more