Trait ISWbemServicesEx_Impl
pub trait ISWbemServicesEx_Impl: ISWbemServices_Impl {
// Required methods
fn Put(
&self,
objwbemobject: Ref<'_, ISWbemObjectEx>,
iflags: i32,
objwbemnamedvalueset: Ref<'_, IDispatch>,
) -> Result<ISWbemObjectPath>;
fn PutAsync(
&self,
objwbemsink: Ref<'_, ISWbemSink>,
objwbemobject: Ref<'_, ISWbemObjectEx>,
iflags: i32,
objwbemnamedvalueset: Ref<'_, IDispatch>,
objwbemasynccontext: Ref<'_, IDispatch>,
) -> Result<()>;
}
Required Methods§
fn Put( &self, objwbemobject: Ref<'_, ISWbemObjectEx>, iflags: i32, objwbemnamedvalueset: Ref<'_, IDispatch>, ) -> Result<ISWbemObjectPath>
fn PutAsync( &self, objwbemsink: Ref<'_, ISWbemSink>, objwbemobject: Ref<'_, ISWbemObjectEx>, iflags: i32, objwbemnamedvalueset: Ref<'_, IDispatch>, objwbemasynccontext: Ref<'_, IDispatch>, ) -> 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.