pub trait IMediaRadioManagerNotifySink_Impl: Sized {
    // Required methods
    fn OnInstanceAdd(
        &self,
        pradioinstance: Option<&IRadioInstance>
    ) -> Result<()>;
    fn OnInstanceRemove(&self, bstrradioinstanceid: &BSTR) -> Result<()>;
    fn OnInstanceRadioChange(
        &self,
        bstrradioinstanceid: &BSTR,
        radiostate: DEVICE_RADIO_STATE
    ) -> Result<()>;
}

Required Methods§

fn OnInstanceAdd(&self, pradioinstance: Option<&IRadioInstance>) -> Result<()>

fn OnInstanceRemove(&self, bstrradioinstanceid: &BSTR) -> Result<()>

fn OnInstanceRadioChange( &self, bstrradioinstanceid: &BSTR, radiostate: DEVICE_RADIO_STATE ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§