pub trait INetCfg_Impl: Sized {
    // Required methods
    fn Initialize(&self, pvreserved: *const c_void) -> Result<()>;
    fn Uninitialize(&self) -> Result<()>;
    fn Apply(&self) -> Result<()>;
    fn Cancel(&self) -> Result<()>;
    fn EnumComponents(
        &self,
        pguidclass: *const GUID,
        ppenumcomponent: *mut Option<IEnumNetCfgComponent>,
    ) -> Result<()>;
    fn FindComponent(
        &self,
        pszwinfid: &PCWSTR,
        pcomponent: *mut Option<INetCfgComponent>,
    ) -> Result<()>;
    fn QueryNetCfgClass(
        &self,
        pguidclass: *const GUID,
        riid: *const GUID,
        ppvobject: *mut *mut c_void,
    ) -> Result<()>;
}

Required Methods§

fn Initialize(&self, pvreserved: *const c_void) -> Result<()>

fn Uninitialize(&self) -> Result<()>

fn Apply(&self) -> Result<()>

fn Cancel(&self) -> Result<()>

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

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

fn QueryNetCfgClass( &self, pguidclass: *const GUID, riid: *const GUID, ppvobject: *mut *mut c_void, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§