Trait IWbemHiPerfEnum_Impl
pub trait IWbemHiPerfEnum_Impl: IUnknownImpl {
// Required methods
fn AddObjects(
&self,
lflags: i32,
unumobjects: u32,
apids: *const i32,
apobj: *const Option<IWbemObjectAccess>,
) -> Result<()>;
fn RemoveObjects(
&self,
lflags: i32,
unumobjects: u32,
apids: *const i32,
) -> Result<()>;
fn GetObjects(
&self,
lflags: i32,
unumobjects: u32,
apobj: OutRef<'_, IWbemObjectAccess>,
pureturned: *mut u32,
) -> Result<()>;
fn RemoveAll(&self, lflags: i32) -> Result<()>;
}
Required Methods§
fn AddObjects( &self, lflags: i32, unumobjects: u32, apids: *const i32, apobj: *const Option<IWbemObjectAccess>, ) -> Result<()>
fn RemoveObjects( &self, lflags: i32, unumobjects: u32, apids: *const i32, ) -> Result<()>
fn GetObjects( &self, lflags: i32, unumobjects: u32, apobj: OutRef<'_, IWbemObjectAccess>, pureturned: *mut u32, ) -> Result<()>
fn RemoveAll(&self, lflags: i32) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.