pub trait DDiscMaster2Events_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn NotifyDeviceAdded(
        &self,
        object: Option<&IDispatch>,
        uniqueid: &BSTR
    ) -> Result<()>;
    fn NotifyDeviceRemoved(
        &self,
        object: Option<&IDispatch>,
        uniqueid: &BSTR
    ) -> Result<()>;
}

Required Methods§

fn NotifyDeviceAdded( &self, object: Option<&IDispatch>, uniqueid: &BSTR ) -> Result<()>

fn NotifyDeviceRemoved( &self, object: Option<&IDispatch>, uniqueid: &BSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§