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

Trait IX509PolicyServerListManager_Impl

pub trait IX509PolicyServerListManager_Impl: IDispatch_Impl {
    // Required methods
    fn get_ItemByIndex(&self, index: i32) -> Result<IX509PolicyServerUrl>;
    fn Count(&self) -> Result<i32>;
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn Add(&self, pval: Ref<'_, IX509PolicyServerUrl>) -> Result<()>;
    fn Remove(&self, index: i32) -> Result<()>;
    fn Clear(&self) -> Result<()>;
    fn Initialize(
        &self,
        context: X509CertificateEnrollmentContext,
        flags: PolicyServerUrlFlags,
    ) -> Result<()>;
}

Required Methods§

fn get_ItemByIndex(&self, index: i32) -> Result<IX509PolicyServerUrl>

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

fn _NewEnum(&self) -> Result<IUnknown>

fn Add(&self, pval: Ref<'_, IX509PolicyServerUrl>) -> Result<()>

fn Remove(&self, index: i32) -> Result<()>

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

fn Initialize( &self, context: X509CertificateEnrollmentContext, flags: PolicyServerUrlFlags, ) -> 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§