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

Trait ICertPolicy_Impl

pub trait ICertPolicy_Impl: IDispatch_Impl {
    // Required methods
    fn Initialize(&self, strconfig: &BSTR) -> Result<()>;
    fn VerifyRequest(
        &self,
        strconfig: &BSTR,
        context: i32,
        bnewrequest: i32,
        flags: i32,
    ) -> Result<i32>;
    fn GetDescription(&self) -> Result<BSTR>;
    fn ShutDown(&self) -> Result<()>;
}

Required Methods§

fn Initialize(&self, strconfig: &BSTR) -> Result<()>

fn VerifyRequest( &self, strconfig: &BSTR, context: i32, bnewrequest: i32, flags: i32, ) -> Result<i32>

fn GetDescription(&self) -> Result<BSTR>

fn ShutDown(&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§