Trait IWbemQualifierSet_Impl
pub trait IWbemQualifierSet_Impl: IUnknownImpl {
// Required methods
fn Get(
&self,
wszname: &PCWSTR,
lflags: i32,
pval: *mut VARIANT,
plflavor: *mut i32,
) -> Result<()>;
fn Put(
&self,
wszname: &PCWSTR,
pval: *const VARIANT,
lflavor: i32,
) -> Result<()>;
fn Delete(&self, wszname: &PCWSTR) -> Result<()>;
fn GetNames(&self, lflags: i32) -> Result<*mut SAFEARRAY>;
fn BeginEnumeration(&self, lflags: i32) -> Result<()>;
fn Next(
&self,
lflags: i32,
pstrname: *mut BSTR,
pval: *mut VARIANT,
plflavor: *mut i32,
) -> Result<()>;
fn EndEnumeration(&self) -> Result<()>;
}
Required Methods§
fn Get( &self, wszname: &PCWSTR, lflags: i32, pval: *mut VARIANT, plflavor: *mut i32, ) -> Result<()>
fn Put( &self, wszname: &PCWSTR, pval: *const VARIANT, lflavor: i32, ) -> Result<()>
fn Delete(&self, wszname: &PCWSTR) -> Result<()>
fn GetNames(&self, lflags: i32) -> Result<*mut SAFEARRAY>
fn BeginEnumeration(&self, lflags: i32) -> Result<()>
fn Next( &self, lflags: i32, pstrname: *mut BSTR, pval: *mut VARIANT, plflavor: *mut i32, ) -> Result<()>
fn EndEnumeration(&self) -> 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.