ICoreWebView2FrameInfoCollection

Trait ICoreWebView2FrameInfoCollection 

Source
pub trait ICoreWebView2FrameInfoCollection: IUnknown {
    // Required method
    unsafe fn get_iterator(
        &self,
        iterator: *mut *mut *mut ICoreWebView2FrameInfoCollectionIteratorVTable,
    ) -> HRESULT;
}
Expand description

Collection of FrameInfos (name and source). Used to list the affected frames’ info when a frame-only render process failure occurs in the ICoreWebView2.

Required Methods§

Source

unsafe fn get_iterator( &self, iterator: *mut *mut *mut ICoreWebView2FrameInfoCollectionIteratorVTable, ) -> HRESULT

Gets an iterator over the collection of FrameInfos.

Trait Implementations§

Source§

impl ComInterface for dyn ICoreWebView2FrameInfoCollection

Source§

const IID: IID = IID_ICORE_WEB_VIEW2_FRAME_INFO_COLLECTION

The associated id for this interface
Source§

type VTable = ICoreWebView2FrameInfoCollectionVTable

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

Source§

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

Get the vtable for a particular COM interface

Implementations on Foreign Types§

Source§

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

Source§

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

Implementors§