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

Trait ICertPropertyEnrollment_Impl

pub trait ICertPropertyEnrollment_Impl: ICertProperty_Impl {
    // Required methods
    fn Initialize(
        &self,
        requestid: i32,
        strcadnsname: &BSTR,
        strcaname: &BSTR,
        strfriendlyname: &BSTR,
    ) -> Result<()>;
    fn RequestId(&self) -> Result<i32>;
    fn CADnsName(&self) -> Result<BSTR>;
    fn CAName(&self) -> Result<BSTR>;
    fn FriendlyName(&self) -> Result<BSTR>;
}

Required Methods§

fn Initialize( &self, requestid: i32, strcadnsname: &BSTR, strcaname: &BSTR, strfriendlyname: &BSTR, ) -> Result<()>

fn RequestId(&self) -> Result<i32>

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

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

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

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§