pub trait IMSMQPrivateEvent_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Hwnd(&self) -> Result<i32>;
    fn FireArrivedEvent(
        &self,
        pq: Option<&IMSMQQueue>,
        msgcursor: i32
    ) -> Result<()>;
    fn FireArrivedErrorEvent(
        &self,
        pq: Option<&IMSMQQueue>,
        hrstatus: HRESULT,
        msgcursor: i32
    ) -> Result<()>;
}

Required Methods§

fn Hwnd(&self) -> Result<i32>

fn FireArrivedEvent( &self, pq: Option<&IMSMQQueue>, msgcursor: i32 ) -> Result<()>

fn FireArrivedErrorEvent( &self, pq: Option<&IMSMQQueue>, hrstatus: HRESULT, msgcursor: i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§