windows::Win32::NetworkManagement::MobileBroadband

Trait IMbnInterfaceEvents_Impl

pub trait IMbnInterfaceEvents_Impl: IUnknownImpl {
    // Required methods
    fn OnInterfaceCapabilityAvailable(
        &self,
        newinterface: Ref<'_, IMbnInterface>,
    ) -> Result<()>;
    fn OnSubscriberInformationChange(
        &self,
        newinterface: Ref<'_, IMbnInterface>,
    ) -> Result<()>;
    fn OnReadyStateChange(
        &self,
        newinterface: Ref<'_, IMbnInterface>,
    ) -> Result<()>;
    fn OnEmergencyModeChange(
        &self,
        newinterface: Ref<'_, IMbnInterface>,
    ) -> Result<()>;
    fn OnHomeProviderAvailable(
        &self,
        newinterface: Ref<'_, IMbnInterface>,
    ) -> Result<()>;
    fn OnPreferredProvidersChange(
        &self,
        newinterface: Ref<'_, IMbnInterface>,
    ) -> Result<()>;
    fn OnSetPreferredProvidersComplete(
        &self,
        newinterface: Ref<'_, IMbnInterface>,
        requestid: u32,
        status: HRESULT,
    ) -> Result<()>;
    fn OnScanNetworkComplete(
        &self,
        newinterface: Ref<'_, IMbnInterface>,
        requestid: u32,
        status: HRESULT,
    ) -> Result<()>;
}

Required Methods§

fn OnInterfaceCapabilityAvailable( &self, newinterface: Ref<'_, IMbnInterface>, ) -> Result<()>

fn OnSubscriberInformationChange( &self, newinterface: Ref<'_, IMbnInterface>, ) -> Result<()>

fn OnReadyStateChange(&self, newinterface: Ref<'_, IMbnInterface>) -> Result<()>

fn OnEmergencyModeChange( &self, newinterface: Ref<'_, IMbnInterface>, ) -> Result<()>

fn OnHomeProviderAvailable( &self, newinterface: Ref<'_, IMbnInterface>, ) -> Result<()>

fn OnPreferredProvidersChange( &self, newinterface: Ref<'_, IMbnInterface>, ) -> Result<()>

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

fn OnScanNetworkComplete( &self, newinterface: Ref<'_, IMbnInterface>, 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§