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

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

Fields

lpVtbl: *const IWbemClassObjectVtbl

Methods

impl IWbemClassObject[src]

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]

Methods from Deref<Target = IUnknown>

pub unsafe fn QueryInterface(
    &self,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn AddRef(&self) -> ULONG[src]

pub unsafe fn Release(&self) -> ULONG[src]

Trait Implementations

impl Interface for IWbemClassObject[src]

impl Deref for IWbemClassObject[src]

type Target = IUnknown

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]