windows::Win32::NetworkManagement::NetManagement

Trait INetCfgComponentControl_Impl

pub trait INetCfgComponentControl_Impl: IUnknownImpl {
    // Required methods
    fn Initialize(
        &self,
        picomp: Ref<'_, INetCfgComponent>,
        pinetcfg: Ref<'_, INetCfg>,
        finstalling: BOOL,
    ) -> Result<()>;
    fn ApplyRegistryChanges(&self) -> Result<()>;
    fn ApplyPnpChanges(
        &self,
        picallback: Ref<'_, INetCfgPnpReconfigCallback>,
    ) -> Result<()>;
    fn CancelChanges(&self) -> Result<()>;
}

Required Methods§

fn Initialize( &self, picomp: Ref<'_, INetCfgComponent>, pinetcfg: Ref<'_, INetCfg>, finstalling: BOOL, ) -> Result<()>

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

fn ApplyPnpChanges( &self, picallback: Ref<'_, INetCfgPnpReconfigCallback>, ) -> Result<()>

fn CancelChanges(&self) -> 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§