Trait webview2_sys::ICoreWebView2FrameInfoCollectionIterator[][src]

pub trait ICoreWebView2FrameInfoCollectionIterator: IUnknown {
    unsafe fn get_has_current(&self, has_current: *mut BOOL) -> HRESULT;
unsafe fn get_current(
        &self,
        frame_info: *mut *mut *mut ICoreWebView2FrameInfoVTable
    ) -> HRESULT;
unsafe fn move_next(&self, has_next: *mut BOOL) -> HRESULT; }
Expand description

Iterator for a collection of FrameInfos. For more info, see ICoreWebView2ProcessFailedEventArgs2 and ICoreWebView2FrameInfoCollection.

Required methods

TRUE when the iterator has not run out of FrameInfos. If the collection over which the iterator is iterating is empty or if the iterator has gone past the end of the collection, then this is FALSE.

Get the current ICoreWebView2FrameInfo of the iterator.

Move the iterator to the next FrameInfo in the collection.

Trait Implementations

A COM compatible V-Table

The interface that this interface inherits from

The associated id for this interface

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

Get the vtable for a particular COM interface

Implementations on Foreign Types

Implementors