windows::Win32::System::ClrHosting

Trait ICLROnEventManager_Impl

pub trait ICLROnEventManager_Impl: IUnknownImpl {
    // Required methods
    fn RegisterActionOnEvent(
        &self,
        event: EClrEvent,
        paction: Ref<'_, IActionOnCLREvent>,
    ) -> Result<()>;
    fn UnregisterActionOnEvent(
        &self,
        event: EClrEvent,
        paction: Ref<'_, IActionOnCLREvent>,
    ) -> Result<()>;
}

Required Methods§

fn RegisterActionOnEvent( &self, event: EClrEvent, paction: Ref<'_, IActionOnCLREvent>, ) -> Result<()>

fn UnregisterActionOnEvent( &self, event: EClrEvent, paction: Ref<'_, IActionOnCLREvent>, ) -> 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.

Implementors§