windows::Win32::NetworkManagement::NetManagement

Trait INetCfgSysPrep_Impl

pub trait INetCfgSysPrep_Impl: IUnknownImpl {
    // Required methods
    fn HrSetupSetFirstDword(
        &self,
        pwszsection: &PCWSTR,
        pwszkey: &PCWSTR,
        dwvalue: u32,
    ) -> Result<()>;
    fn HrSetupSetFirstString(
        &self,
        pwszsection: &PCWSTR,
        pwszkey: &PCWSTR,
        pwszvalue: &PCWSTR,
    ) -> Result<()>;
    fn HrSetupSetFirstStringAsBool(
        &self,
        pwszsection: &PCWSTR,
        pwszkey: &PCWSTR,
        fvalue: BOOL,
    ) -> Result<()>;
    fn HrSetupSetFirstMultiSzField(
        &self,
        pwszsection: &PCWSTR,
        pwszkey: &PCWSTR,
        pmszvalue: &PCWSTR,
    ) -> Result<()>;
}

Required Methods§

fn HrSetupSetFirstDword( &self, pwszsection: &PCWSTR, pwszkey: &PCWSTR, dwvalue: u32, ) -> Result<()>

fn HrSetupSetFirstString( &self, pwszsection: &PCWSTR, pwszkey: &PCWSTR, pwszvalue: &PCWSTR, ) -> Result<()>

fn HrSetupSetFirstStringAsBool( &self, pwszsection: &PCWSTR, pwszkey: &PCWSTR, fvalue: BOOL, ) -> Result<()>

fn HrSetupSetFirstMultiSzField( &self, pwszsection: &PCWSTR, pwszkey: &PCWSTR, pmszvalue: &PCWSTR, ) -> 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§