DOT11_EXTSTA_ATTRIBUTES

Struct DOT11_EXTSTA_ATTRIBUTES 

Source
#[repr(C)]
pub struct DOT11_EXTSTA_ATTRIBUTES {
Show 34 fields pub Header: NDIS_OBJECT_HEADER, pub uScanSSIDListSize: ULONG, pub uDesiredBSSIDListSize: ULONG, pub uDesiredSSIDListSize: ULONG, pub uExcludedMacAddressListSize: ULONG, pub uPrivacyExemptionListSize: ULONG, pub uKeyMappingTableSize: ULONG, pub uDefaultKeyTableSize: ULONG, pub uWEPKeyValueMaxLength: ULONG, pub uPMKIDCacheSize: ULONG, pub uMaxNumPerSTADefaultKeyTables: ULONG, pub bStrictlyOrderedServiceClassImplemented: BOOLEAN, pub ucSupportedQoSProtocolFlags: UCHAR, pub bSafeModeImplemented: BOOLEAN, pub uNumSupportedCountryOrRegionStrings: ULONG, pub pSupportedCountryOrRegionStrings: PDOT11_COUNTRY_OR_REGION_STRING, pub uInfraNumSupportedUcastAlgoPairs: ULONG, pub pInfraSupportedUcastAlgoPairs: PDOT11_AUTH_CIPHER_PAIR, pub uInfraNumSupportedMcastAlgoPairs: ULONG, pub pInfraSupportedMcastAlgoPairs: PDOT11_AUTH_CIPHER_PAIR, pub uAdhocNumSupportedUcastAlgoPairs: ULONG, pub pAdhocSupportedUcastAlgoPairs: PDOT11_AUTH_CIPHER_PAIR, pub uAdhocNumSupportedMcastAlgoPairs: ULONG, pub pAdhocSupportedMcastAlgoPairs: PDOT11_AUTH_CIPHER_PAIR, pub bAutoPowerSaveMode: BOOLEAN, pub uMaxNetworkOffloadListSize: ULONG, pub bMFPCapable: BOOLEAN, pub uInfraNumSupportedMcastMgmtAlgoPairs: ULONG, pub pInfraSupportedMcastMgmtAlgoPairs: PDOT11_AUTH_CIPHER_PAIR, pub bNeighborReportSupported: BOOLEAN, pub bAPChannelReportSupported: BOOLEAN, pub bActionFramesSupported: BOOLEAN, pub bANQPQueryOffloadSupported: BOOLEAN, pub bHESSIDConnectionSupported: BOOLEAN,
}

Fields§

§Header: NDIS_OBJECT_HEADER§uScanSSIDListSize: ULONG§uDesiredBSSIDListSize: ULONG§uDesiredSSIDListSize: ULONG§uExcludedMacAddressListSize: ULONG§uPrivacyExemptionListSize: ULONG§uKeyMappingTableSize: ULONG§uDefaultKeyTableSize: ULONG§uWEPKeyValueMaxLength: ULONG§uPMKIDCacheSize: ULONG§uMaxNumPerSTADefaultKeyTables: ULONG§bStrictlyOrderedServiceClassImplemented: BOOLEAN§ucSupportedQoSProtocolFlags: UCHAR§bSafeModeImplemented: BOOLEAN§uNumSupportedCountryOrRegionStrings: ULONG§pSupportedCountryOrRegionStrings: PDOT11_COUNTRY_OR_REGION_STRING§uInfraNumSupportedUcastAlgoPairs: ULONG§pInfraSupportedUcastAlgoPairs: PDOT11_AUTH_CIPHER_PAIR§uInfraNumSupportedMcastAlgoPairs: ULONG§pInfraSupportedMcastAlgoPairs: PDOT11_AUTH_CIPHER_PAIR§uAdhocNumSupportedUcastAlgoPairs: ULONG§pAdhocSupportedUcastAlgoPairs: PDOT11_AUTH_CIPHER_PAIR§uAdhocNumSupportedMcastAlgoPairs: ULONG§pAdhocSupportedMcastAlgoPairs: PDOT11_AUTH_CIPHER_PAIR§bAutoPowerSaveMode: BOOLEAN§uMaxNetworkOffloadListSize: ULONG§bMFPCapable: BOOLEAN§uInfraNumSupportedMcastMgmtAlgoPairs: ULONG§pInfraSupportedMcastMgmtAlgoPairs: PDOT11_AUTH_CIPHER_PAIR§bNeighborReportSupported: BOOLEAN§bAPChannelReportSupported: BOOLEAN§bActionFramesSupported: BOOLEAN§bANQPQueryOffloadSupported: BOOLEAN§bHESSIDConnectionSupported: BOOLEAN

Trait Implementations§

Source§

impl Clone for DOT11_EXTSTA_ATTRIBUTES

Source§

fn clone(&self) -> DOT11_EXTSTA_ATTRIBUTES

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Default for DOT11_EXTSTA_ATTRIBUTES

Source§

fn default() -> DOT11_EXTSTA_ATTRIBUTES

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

impl Copy for DOT11_EXTSTA_ATTRIBUTES

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, dest: *mut u8)

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