IDot11AdHocNetworkVtbl

Struct IDot11AdHocNetworkVtbl 

Source
#[repr(C)]
pub struct IDot11AdHocNetworkVtbl {
Show 13 fields pub parent: IUnknownVtbl, pub GetStatus: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, eStatus: *mut DOT11_ADHOC_NETWORK_CONNECTION_STATUS) -> HRESULT, pub GetSSID: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, ppszwSSID: *mut LPWSTR) -> HRESULT, pub HasProfile: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, pf11d: *mut BOOLEAN) -> HRESULT, pub GetProfileName: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, ppszwProfileName: *mut LPWSTR) -> HRESULT, pub DeleteProfile: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork) -> HRESULT, pub GetSignalQuality: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, puStrengthValue: *mut ULONG, puStrengthMax: *mut ULONG) -> HRESULT, pub GetSecuritySetting: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, pAdHocSecuritySetting: *mut *mut IDot11AdHocSecuritySettings) -> HRESULT, pub GetContextGuid: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, pContextGuid: *mut GUID) -> HRESULT, pub GetSignature: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, pSignature: *mut GUID) -> HRESULT, pub GetInterface: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, pAdHocInterface: *mut *mut IDot11AdHocInterface) -> HRESULT, pub Connect: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, Passphrase: LPCWSTR, GeographicalId: LONG, fSaveProfile: BOOLEAN, fMakeSavedProfileUserSpecific: BOOLEAN) -> HRESULT, pub Disconnect: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork) -> HRESULT,
}

Fields§

§parent: IUnknownVtbl§GetStatus: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, eStatus: *mut DOT11_ADHOC_NETWORK_CONNECTION_STATUS) -> HRESULT§GetSSID: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, ppszwSSID: *mut LPWSTR) -> HRESULT§HasProfile: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, pf11d: *mut BOOLEAN) -> HRESULT§GetProfileName: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, ppszwProfileName: *mut LPWSTR) -> HRESULT§DeleteProfile: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork) -> HRESULT§GetSignalQuality: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, puStrengthValue: *mut ULONG, puStrengthMax: *mut ULONG) -> HRESULT§GetSecuritySetting: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, pAdHocSecuritySetting: *mut *mut IDot11AdHocSecuritySettings) -> HRESULT§GetContextGuid: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, pContextGuid: *mut GUID) -> HRESULT§GetSignature: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, pSignature: *mut GUID) -> HRESULT§GetInterface: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, pAdHocInterface: *mut *mut IDot11AdHocInterface) -> HRESULT§Connect: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork, Passphrase: LPCWSTR, GeographicalId: LONG, fSaveProfile: BOOLEAN, fMakeSavedProfileUserSpecific: BOOLEAN) -> HRESULT§Disconnect: unsafe extern "system" fn(This: *mut IDot11AdHocNetwork) -> HRESULT

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.

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.