[][src]Struct winapi::um::wbemcli::IWbemObjectAccess

#[repr(C)]
pub struct IWbemObjectAccess { pub lpVtbl: *const IWbemObjectAccessVtbl, }

Fields

lpVtbl: *const IWbemObjectAccessVtbl

Methods

impl IWbemObjectAccess[src]

pub unsafe fn GetPropertyHandle(
    &self,
    wszPropertyName: LPCWSTR,
    pType: *mut CIMTYPE,
    plHandle: *mut c_long
) -> HRESULT
[src]

pub unsafe fn WritePropertyValue(
    &self,
    lHandle: c_long,
    lNumBytes: c_long,
    aData: *const byte
) -> HRESULT
[src]

pub unsafe fn ReadPropertyValue(
    &self,
    lHandle: c_long,
    lBufferSize: c_long,
    plNumBytes: *mut c_long,
    aData: *mut byte
) -> HRESULT
[src]

pub unsafe fn ReadDWORD(&self, lHandle: c_long, pdw: *mut DWORD) -> HRESULT[src]

pub unsafe fn WriteDWORD(&self, lHandle: c_long, dw: DWORD) -> HRESULT[src]

pub unsafe fn ReadQWORD(&self, lHandle: c_long, pqw: *mut __uint64) -> HRESULT[src]

pub unsafe fn WriteQWORD(&self, lHandle: c_long, pw: __uint64) -> HRESULT[src]

pub unsafe fn GetPropertyInfoByHandle(
    &self,
    lHandle: c_long,
    pstrName: *mut BSTR,
    pType: *mut CIMTYPE
) -> HRESULT
[src]

pub unsafe fn Lock(&self, lFlags: c_long) -> HRESULT[src]

pub unsafe fn Unlock(&self, lFlags: c_long) -> HRESULT[src]

Methods from Deref<Target = IWbemClassObject>

pub unsafe fn GetQualifierSet(
    &self,
    ppQualSet: *mut *mut IWbemQualifierSet
) -> HRESULT
[src]

pub unsafe fn Get(
    &self,
    wszName: LPCWSTR,
    lFlags: c_long,
    pVal: *mut VARIANT,
    pType: *mut CIMTYPE,
    plFlavor: *mut c_long
) -> HRESULT
[src]

pub unsafe fn Put(
    &self,
    wszName: LPCWSTR,
    lFlags: c_long,
    pVal: *mut VARIANT,
    Type: CIMTYPE
) -> HRESULT
[src]

pub unsafe fn Delete(&self, wszName: LPCWSTR) -> HRESULT[src]

pub unsafe fn GetNames(
    &self,
    wszQualifierName: LPCWSTR,
    lFlags: c_long,
    pQualifierVal: *mut VARIANT,
    pNames: *mut *mut SAFEARRAY
) -> HRESULT
[src]

pub unsafe fn BeginEnumeration(&self, lEnumFlags: c_long) -> HRESULT[src]

pub unsafe fn Next(
    &self,
    lFlags: c_long,
    strName: *mut BSTR,
    pVal: *mut VARIANT,
    pType: *mut CIMTYPE,
    plFlavor: *mut c_long
) -> HRESULT
[src]

pub unsafe fn EndEnumeration(&self) -> HRESULT[src]

pub unsafe fn GetPropertyQualifierSet(
    &self,
    wszProperty: LPCWSTR,
    ppQualSet: *mut *mut IWbemQualifierSet
) -> HRESULT
[src]

pub unsafe fn Clone(&self, ppCopy: *mut *mut IWbemClassObject) -> HRESULT[src]

pub unsafe fn GetObjectText(
    &self,
    lFlags: c_long,
    pstrObjectText: *mut BSTR
) -> HRESULT
[src]

pub unsafe fn SpawnDerivedClass(
    &self,
    lFlags: c_long,
    ppNewClass: *mut *mut IWbemClassObject
) -> HRESULT
[src]

pub unsafe fn SpawnInstance(
    &self,
    lFlags: c_long,
    ppNewInstance: *mut *mut IWbemClassObject
) -> HRESULT
[src]

pub unsafe fn CompareTo(
    &self,
    lFlags: c_long,
    pCompareTo: *mut IWbemClassObject
) -> HRESULT
[src]

pub unsafe fn GetPropertyOrigin(
    &self,
    wszName: LPCWSTR,
    pstrClassName: *mut BSTR
) -> HRESULT
[src]

pub unsafe fn InheritsFrom(&self, strAncestor: LPCWSTR) -> HRESULT[src]

pub unsafe fn GetMethod(
    &self,
    wszName: LPCWSTR,
    lFlags: c_long,
    ppInSignature: *mut *mut IWbemClassObject,
    ppOutSignature: *mut *mut IWbemClassObject
) -> HRESULT
[src]

pub unsafe fn PutMethod(
    &self,
    wszName: LPCWSTR,
    lFlags: c_long,
    pInSignature: *mut IWbemClassObject,
    pOutSignature: *mut IWbemClassObject
) -> HRESULT
[src]

pub unsafe fn DeleteMethod(&self, wszName: LPCWSTR) -> HRESULT[src]

pub unsafe fn BeginMethodEnumeration(&self, lEnumFlags: c_long) -> HRESULT[src]

pub unsafe fn NextMethod(
    &self,
    lFlags: c_long,
    pstrName: *mut BSTR,
    ppInSignature: *mut *mut IWbemClassObject,
    ppOutSignature: *mut *mut IWbemClassObject
) -> HRESULT
[src]

pub unsafe fn EndMethodEnumeration(&self) -> HRESULT[src]

pub unsafe fn GetMethodQualifierSet(
    &self,
    wszMethod: LPCWSTR,
    ppQualSet: *mut *mut IWbemQualifierSet
) -> HRESULT
[src]

pub unsafe fn GetMethodOrigin(
    &self,
    wszMethodName: LPCWSTR,
    pstrClassName: *mut BSTR
) -> HRESULT
[src]

Trait Implementations

impl Interface for IWbemObjectAccess[src]

impl Deref for IWbemObjectAccess[src]

type Target = IWbemClassObject

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

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