pub trait INetworkEvents_Impl: Sized {
    // Required methods
    fn NetworkAdded(&self, networkid: &GUID) -> Result<()>;
    fn NetworkDeleted(&self, networkid: &GUID) -> Result<()>;
    fn NetworkConnectivityChanged(
        &self,
        networkid: &GUID,
        newconnectivity: NLM_CONNECTIVITY,
    ) -> Result<()>;
    fn NetworkPropertyChanged(
        &self,
        networkid: &GUID,
        flags: NLM_NETWORK_PROPERTY_CHANGE,
    ) -> Result<()>;
}

Required Methods§

fn NetworkAdded(&self, networkid: &GUID) -> Result<()>

fn NetworkDeleted(&self, networkid: &GUID) -> Result<()>

fn NetworkConnectivityChanged( &self, networkid: &GUID, newconnectivity: NLM_CONNECTIVITY, ) -> Result<()>

fn NetworkPropertyChanged( &self, networkid: &GUID, flags: NLM_NETWORK_PROPERTY_CHANGE, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§