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

#[repr(C)]pub struct WLAN_CONNECTION_NOTIFICATION_DATA {
    pub wlanConnectionMode: WLAN_CONNECTION_MODE,
    pub strProfileName: [WCHAR; 256],
    pub dot11Ssid: DOT11_SSID,
    pub dot11BssType: DOT11_BSS_TYPE,
    pub bSecurityEnabled: BOOL,
    pub wlanReasonCode: WLAN_REASON_CODE,
    pub dwFlags: DWORD,
    pub strProfileXml: [WCHAR; 1],
}

Fields

wlanConnectionMode: WLAN_CONNECTION_MODEstrProfileName: [WCHAR; 256]dot11Ssid: DOT11_SSIDdot11BssType: DOT11_BSS_TYPEbSecurityEnabled: BOOLwlanReasonCode: WLAN_REASON_CODEdwFlags: DWORDstrProfileXml: [WCHAR; 1]

Trait Implementations

impl Clone for WLAN_CONNECTION_NOTIFICATION_DATA[src]

impl Copy for WLAN_CONNECTION_NOTIFICATION_DATA[src]

impl Default for WLAN_CONNECTION_NOTIFICATION_DATA[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.