windows::Win32::NetworkManagement::WiFi

Struct DOT11_ASSOCIATION_COMPLETION_PARAMETERS

#[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: bool, pub bReAssocResp: bool, 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: bool, pub bPortAuthorized: bool, 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: bool§bReAssocResp: bool§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: bool§bPortAuthorized: bool§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) -> DOT11_ASSOCIATION_COMPLETION_PARAMETERS

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: &DOT11_ASSOCIATION_COMPLETION_PARAMETERS) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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 StructuralPartialEq 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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.

Source§

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

Source§

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>,

Source§

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>,

Source§

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.