#[repr(C)]
pub struct DOT11_ASSOCIATION_COMPLETION_PARAMETERS {
Show 26 fields pub Header: NDIS_OBJECT_HEADER, pub MacAddr: [u8; 6], pub uStatus: u32, pub bReAssocReq: BOOLEAN, pub bReAssocResp: BOOLEAN, pub uAssocReqOffset: u32, pub uAssocReqSize: u32, pub uAssocRespOffset: u32, pub uAssocRespSize: u32, pub uBeaconOffset: u32, pub uBeaconSize: u32, pub uIHVDataOffset: u32, pub uIHVDataSize: u32, pub AuthAlgo: DOT11_AUTH_ALGORITHM, pub UnicastCipher: DOT11_CIPHER_ALGORITHM, pub MulticastCipher: DOT11_CIPHER_ALGORITHM, pub uActivePhyListOffset: u32, pub uActivePhyListSize: u32, pub bFourAddressSupported: BOOLEAN, pub bPortAuthorized: BOOLEAN, pub ucActiveQoSProtocol: u8, pub DSInfo: DOT11_DS_INFO, pub uEncapTableOffset: u32, pub uEncapTableSize: u32, pub MulticastMgmtCipher: DOT11_CIPHER_ALGORITHM, pub uAssocComebackTime: u32,
}
Expand description

Required features: "Win32_Foundation", "Win32_NetworkManagement_Ndis"

Fields§

§Header: NDIS_OBJECT_HEADER§MacAddr: [u8; 6]§uStatus: u32§bReAssocReq: BOOLEAN§bReAssocResp: BOOLEAN§uAssocReqOffset: u32§uAssocReqSize: u32§uAssocRespOffset: u32§uAssocRespSize: u32§uBeaconOffset: u32§uBeaconSize: u32§uIHVDataOffset: u32§uIHVDataSize: u32§AuthAlgo: DOT11_AUTH_ALGORITHM§UnicastCipher: DOT11_CIPHER_ALGORITHM§MulticastCipher: DOT11_CIPHER_ALGORITHM§uActivePhyListOffset: u32§uActivePhyListSize: u32§bFourAddressSupported: BOOLEAN§bPortAuthorized: BOOLEAN§ucActiveQoSProtocol: u8§DSInfo: DOT11_DS_INFO§uEncapTableOffset: u32§uEncapTableSize: u32§MulticastMgmtCipher: DOT11_CIPHER_ALGORITHM§uAssocComebackTime: u32

Trait Implementations§

§

impl Clone for DOT11_ASSOCIATION_COMPLETION_PARAMETERS

§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Copy for DOT11_ASSOCIATION_COMPLETION_PARAMETERS

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.