pub trait IESEvents_Impl: Sized {
    // Required method
    fn OnESEventReceived(
        &self,
        guideventtype: &GUID,
        pesevent: Option<&IESEvent>
    ) -> Result<()>;
}

Required Methods§

fn OnESEventReceived( &self, guideventtype: &GUID, pesevent: Option<&IESEvent> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§