pub trait IMbnRegistrationEvents_Impl: Sized {
    // Required methods
    fn OnRegisterModeAvailable(
        &self,
        newinterface: Option<&IMbnRegistration>
    ) -> Result<()>;
    fn OnRegisterStateChange(
        &self,
        newinterface: Option<&IMbnRegistration>
    ) -> Result<()>;
    fn OnPacketServiceStateChange(
        &self,
        newinterface: Option<&IMbnRegistration>
    ) -> Result<()>;
    fn OnSetRegisterModeComplete(
        &self,
        newinterface: Option<&IMbnRegistration>,
        requestid: u32,
        status: HRESULT
    ) -> Result<()>;
}

Required Methods§

fn OnRegisterModeAvailable( &self, newinterface: Option<&IMbnRegistration> ) -> Result<()>

fn OnRegisterStateChange( &self, newinterface: Option<&IMbnRegistration> ) -> Result<()>

fn OnPacketServiceStateChange( &self, newinterface: Option<&IMbnRegistration> ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§