Trait IEventSystem_Impl
pub trait IEventSystem_Impl: IDispatch_Impl {
// Required methods
fn Query(
&self,
progid: &BSTR,
querycriteria: &BSTR,
errorindex: *mut i32,
) -> Result<IUnknown>;
fn Store(&self, progid: &BSTR, pinterface: Ref<'_, IUnknown>) -> Result<()>;
fn Remove(&self, progid: &BSTR, querycriteria: &BSTR) -> Result<i32>;
fn EventObjectChangeEventClassID(&self) -> Result<BSTR>;
fn QueryS(&self, progid: &BSTR, querycriteria: &BSTR) -> Result<IUnknown>;
fn RemoveS(&self, progid: &BSTR, querycriteria: &BSTR) -> Result<()>;
}
Required Methods§
fn Query( &self, progid: &BSTR, querycriteria: &BSTR, errorindex: *mut i32, ) -> Result<IUnknown>
fn Store(&self, progid: &BSTR, pinterface: Ref<'_, IUnknown>) -> Result<()>
fn Remove(&self, progid: &BSTR, querycriteria: &BSTR) -> Result<i32>
fn EventObjectChangeEventClassID(&self) -> Result<BSTR>
fn QueryS(&self, progid: &BSTR, querycriteria: &BSTR) -> Result<IUnknown>
fn RemoveS(&self, progid: &BSTR, querycriteria: &BSTR) -> 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.