pub trait INetCfgClass_Impl: Sized {
    // Required methods
    fn FindComponent(
        &self,
        pszwinfid: &PCWSTR,
        ppnccitem: *mut Option<INetCfgComponent>
    ) -> Result<()>;
    fn EnumComponents(
        &self,
        ppenumcomponent: *mut Option<IEnumNetCfgComponent>
    ) -> Result<()>;
}

Required Methods§

fn FindComponent( &self, pszwinfid: &PCWSTR, ppnccitem: *mut Option<INetCfgComponent> ) -> Result<()>

fn EnumComponents( &self, ppenumcomponent: *mut Option<IEnumNetCfgComponent> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§