pub trait IPortableDeviceEventCallback_Impl: Sized {
    // Required method
    fn OnEvent(
        &self,
        peventparameters: Option<&IPortableDeviceValues>
    ) -> Result<()>;
}

Required Methods§

fn OnEvent( &self, peventparameters: Option<&IPortableDeviceValues> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§