windows::Win32::NetworkManagement::NetManagement

Trait INetCfgComponentNotifyGlobal_Impl

pub trait INetCfgComponentNotifyGlobal_Impl: IUnknownImpl {
    // Required methods
    fn GetSupportedNotifications(&self) -> Result<u32>;
    fn SysQueryBindingPath(
        &self,
        dwchangeflag: u32,
        pipath: Ref<'_, INetCfgBindingPath>,
    ) -> Result<()>;
    fn SysNotifyBindingPath(
        &self,
        dwchangeflag: u32,
        pipath: Ref<'_, INetCfgBindingPath>,
    ) -> Result<()>;
    fn SysNotifyComponent(
        &self,
        dwchangeflag: u32,
        picomp: Ref<'_, INetCfgComponent>,
    ) -> Result<()>;
}

Required Methods§

fn GetSupportedNotifications(&self) -> Result<u32>

fn SysQueryBindingPath( &self, dwchangeflag: u32, pipath: Ref<'_, INetCfgBindingPath>, ) -> Result<()>

fn SysNotifyBindingPath( &self, dwchangeflag: u32, pipath: Ref<'_, INetCfgBindingPath>, ) -> Result<()>

fn SysNotifyComponent( &self, dwchangeflag: u32, picomp: Ref<'_, INetCfgComponent>, ) -> 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§