pub trait INetCfgComponentNotifyBinding_Impl: Sized {
    // Required methods
    fn QueryBindingPath(
        &self,
        dwchangeflag: u32,
        pipath: Option<&INetCfgBindingPath>
    ) -> Result<()>;
    fn NotifyBindingPath(
        &self,
        dwchangeflag: u32,
        pipath: Option<&INetCfgBindingPath>
    ) -> Result<()>;
}

Required Methods§

fn QueryBindingPath( &self, dwchangeflag: u32, pipath: Option<&INetCfgBindingPath> ) -> Result<()>

fn NotifyBindingPath( &self, dwchangeflag: u32, pipath: Option<&INetCfgBindingPath> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§