windows::Win32::Networking::NetworkListManager

Trait INetworkConnectionEvents_Impl

pub trait INetworkConnectionEvents_Impl: IUnknownImpl {
    // Required methods
    fn NetworkConnectionConnectivityChanged(
        &self,
        connectionid: &GUID,
        newconnectivity: NLM_CONNECTIVITY,
    ) -> Result<()>;
    fn NetworkConnectionPropertyChanged(
        &self,
        connectionid: &GUID,
        flags: NLM_CONNECTION_PROPERTY_CHANGE,
    ) -> Result<()>;
}

Required Methods§

fn NetworkConnectionConnectivityChanged( &self, connectionid: &GUID, newconnectivity: NLM_CONNECTIVITY, ) -> Result<()>

fn NetworkConnectionPropertyChanged( &self, connectionid: &GUID, flags: NLM_CONNECTION_PROPERTY_CHANGE, ) -> 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§