[][src]Struct winapi::um::wlanapi::WLAN_AVAILABLE_NETWORK_V2

#[repr(C)]pub struct WLAN_AVAILABLE_NETWORK_V2 {
    pub strProfileName: [WCHAR; 256],
    pub dot11Ssid: DOT11_SSID,
    pub dot11BssType: DOT11_BSS_TYPE,
    pub uNumberOfBssids: ULONG,
    pub bNetworkConnectable: BOOL,
    pub wlanNotConnectableReason: WLAN_REASON_CODE,
    pub uNumberOfPhyTypes: ULONG,
    pub dot11PhyTypes: [DOT11_PHY_TYPE; 8],
    pub bMorePhyTypes: BOOL,
    pub wlanSignalQuality: WLAN_SIGNAL_QUALITY,
    pub bSecurityEnabled: BOOL,
    pub dot11DefaultAuthAlgorithm: DOT11_AUTH_ALGORITHM,
    pub dot11DefaultCipherAlgorithm: DOT11_CIPHER_ALGORITHM,
    pub dwFlags: DWORD,
    pub AccessNetworkOptions: DOT11_ACCESSNETWORKOPTIONS,
    pub dot11HESSID: DOT11_HESSID,
    pub VenueInfo: DOT11_VENUEINFO,
    pub dwReserved: DWORD,
}

Fields

strProfileName: [WCHAR; 256]dot11Ssid: DOT11_SSIDdot11BssType: DOT11_BSS_TYPEuNumberOfBssids: ULONGbNetworkConnectable: BOOLwlanNotConnectableReason: WLAN_REASON_CODEuNumberOfPhyTypes: ULONGdot11PhyTypes: [DOT11_PHY_TYPE; 8]bMorePhyTypes: BOOLwlanSignalQuality: WLAN_SIGNAL_QUALITYbSecurityEnabled: BOOLdot11DefaultAuthAlgorithm: DOT11_AUTH_ALGORITHMdot11DefaultCipherAlgorithm: DOT11_CIPHER_ALGORITHMdwFlags: DWORDAccessNetworkOptions: DOT11_ACCESSNETWORKOPTIONSdot11HESSID: DOT11_HESSIDVenueInfo: DOT11_VENUEINFOdwReserved: DWORD

Trait Implementations

impl Clone for WLAN_AVAILABLE_NETWORK_V2[src]

impl Copy for WLAN_AVAILABLE_NETWORK_V2[src]

impl Default for WLAN_AVAILABLE_NETWORK_V2[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.