pub trait INetworkConnectionEvents_Impl: Sized {
    // 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<()>

Object Safety§

This trait is not object safe.

Implementors§