windows::Win32::NetworkManagement::MobileBroadband

Trait IMbnRegistrationEvents_Impl

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

Required Methods§

fn OnRegisterModeAvailable( &self, newinterface: Ref<'_, IMbnRegistration>, ) -> Result<()>

fn OnRegisterStateChange( &self, newinterface: Ref<'_, IMbnRegistration>, ) -> Result<()>

fn OnPacketServiceStateChange( &self, newinterface: Ref<'_, IMbnRegistration>, ) -> Result<()>

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§