pub trait IComUserEvent_Impl: Sized {
    // Required method
    fn OnUserEvent(
        &self,
        pinfo: *const COMSVCSEVENTINFO,
        pvarevent: *const VARIANT
    ) -> Result<()>;
}

Required Methods§

fn OnUserEvent( &self, pinfo: *const COMSVCSEVENTINFO, pvarevent: *const VARIANT ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§