Trait IMSMQPrivateEvent_Impl
pub trait IMSMQPrivateEvent_Impl: IDispatch_Impl {
// Required methods
fn Hwnd(&self) -> Result<i32>;
fn FireArrivedEvent(
&self,
pq: Ref<'_, IMSMQQueue>,
msgcursor: i32,
) -> Result<()>;
fn FireArrivedErrorEvent(
&self,
pq: Ref<'_, IMSMQQueue>,
hrstatus: HRESULT,
msgcursor: i32,
) -> Result<()>;
}
Required Methods§
fn Hwnd(&self) -> Result<i32>
fn FireArrivedEvent( &self, pq: Ref<'_, IMSMQQueue>, msgcursor: i32, ) -> Result<()>
fn FireArrivedErrorEvent( &self, pq: Ref<'_, IMSMQQueue>, hrstatus: HRESULT, msgcursor: 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.