ICoreWebView2ClientCertificateCollection

Trait ICoreWebView2ClientCertificateCollection 

Source
pub trait ICoreWebView2ClientCertificateCollection: IUnknown {
    // Required methods
    unsafe fn get_count(&self, value: *mut u32) -> HRESULT;
    unsafe fn get_value_at_index(
        &self,
        index: u32,
        certificate: *mut *mut *mut ICoreWebView2ClientCertificateVTable,
    ) -> HRESULT;
}
Expand description

A collection of client certificate object.

Required Methods§

Source

unsafe fn get_count(&self, value: *mut u32) -> HRESULT

The number of client certificates contained in the ICoreWebView2ClientCertificateCollection.

Source

unsafe fn get_value_at_index( &self, index: u32, certificate: *mut *mut *mut ICoreWebView2ClientCertificateVTable, ) -> HRESULT

Gets the certificate object at the given index.

Trait Implementations§

Source§

impl ComInterface for dyn ICoreWebView2ClientCertificateCollection

Source§

const IID: IID = IID_ICORE_WEB_VIEW2_CLIENT_CERTIFICATE_COLLECTION

The associated id for this interface
Source§

type VTable = ICoreWebView2ClientCertificateCollectionVTable

A COM compatible V-Table
Source§

type Super = dyn IUnknown

The interface that this interface inherits from
Source§

fn is_iid_in_inheritance_chain(riid: &GUID) -> bool

Check whether a given IID is in the inheritance hierarchy of this interface
Source§

impl<C: ICoreWebView2ClientCertificateCollection> ProductionComInterface<C> for dyn ICoreWebView2ClientCertificateCollection

Source§

fn vtable<O: Offset>() -> Self::VTable

Get the vtable for a particular COM interface

Implementations on Foreign Types§

Source§

impl<T: ICoreWebView2ClientCertificateCollection + ComInterface + ?Sized> ICoreWebView2ClientCertificateCollection for ComPtr<T>

Source§

impl<T: ICoreWebView2ClientCertificateCollection + ComInterface + ?Sized> ICoreWebView2ClientCertificateCollection for ComRc<T>

Implementors§