#[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,
}

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 Debug for DOT11_ASSOCIATION_COMPLETION_PARAMETERS

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl Default for DOT11_ASSOCIATION_COMPLETION_PARAMETERS

§

fn default() -> Self

Returns the “default value” for a type. Read more
§

impl PartialEq for DOT11_ASSOCIATION_COMPLETION_PARAMETERS

§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for DOT11_ASSOCIATION_COMPLETION_PARAMETERS

§

impl Eq for DOT11_ASSOCIATION_COMPLETION_PARAMETERS

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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.

§

impl<T, U> Param<T, CopyType> for U
where T: TypeKind<TypeKind = CopyType> + Clone, U: TypeKind<TypeKind = CopyType> + Clone + CanInto<T>,

§

unsafe fn param(self) -> ParamValue<T>

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.