windows::Win32::Security::Cryptography::Certificates

Trait ICertManageModule_Impl

pub trait ICertManageModule_Impl: IDispatch_Impl {
    // Required methods
    fn GetProperty(
        &self,
        strconfig: &BSTR,
        strstoragelocation: &BSTR,
        strpropertyname: &BSTR,
        flags: i32,
    ) -> Result<VARIANT>;
    fn SetProperty(
        &self,
        strconfig: &BSTR,
        strstoragelocation: &BSTR,
        strpropertyname: &BSTR,
        flags: i32,
        pvarproperty: *const VARIANT,
    ) -> Result<()>;
    fn Configure(
        &self,
        strconfig: &BSTR,
        strstoragelocation: &BSTR,
        flags: i32,
    ) -> Result<()>;
}

Required Methods§

fn GetProperty( &self, strconfig: &BSTR, strstoragelocation: &BSTR, strpropertyname: &BSTR, flags: i32, ) -> Result<VARIANT>

fn SetProperty( &self, strconfig: &BSTR, strstoragelocation: &BSTR, strpropertyname: &BSTR, flags: i32, pvarproperty: *const VARIANT, ) -> Result<()>

fn Configure( &self, strconfig: &BSTR, strstoragelocation: &BSTR, flags: i32, ) -> 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§