ICoreWebView2StringCollection

Trait ICoreWebView2StringCollection 

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

A collection of strings.

Required Methods§

Source

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

The number of strings contained in ICoreWebView2StringCollection.

Source

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

Gets the value at a given index.

Trait Implementations§

Source§

impl ComInterface for dyn ICoreWebView2StringCollection

Source§

const IID: IID = IID_ICORE_WEB_VIEW2_STRING_COLLECTION

The associated id for this interface
Source§

type VTable = ICoreWebView2StringCollectionVTable

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: ICoreWebView2StringCollection> ProductionComInterface<C> for dyn ICoreWebView2StringCollection

Source§

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

Get the vtable for a particular COM interface

Implementations on Foreign Types§

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Implementors§