pub trait IMbnRadioEvents_Impl: Sized {
    // Required methods
    fn OnRadioStateChange(&self, newinterface: Option<&IMbnRadio>) -> Result<()>;
    fn OnSetSoftwareRadioStateComplete(
        &self,
        newinterface: Option<&IMbnRadio>,
        requestid: u32,
        status: HRESULT
    ) -> Result<()>;
}

Required Methods§

fn OnRadioStateChange(&self, newinterface: Option<&IMbnRadio>) -> Result<()>

fn OnSetSoftwareRadioStateComplete( &self, newinterface: Option<&IMbnRadio>, requestid: u32, status: HRESULT ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§