ICoreWebView2CreateCoreWebView2ControllerCompletedHandler

Trait ICoreWebView2CreateCoreWebView2ControllerCompletedHandler 

Source
pub trait ICoreWebView2CreateCoreWebView2ControllerCompletedHandler: IUnknown {
    // Required method
    unsafe fn invoke(
        &self,
        error_code: HRESULT,
        created_controller: *mut *mut ICoreWebView2ControllerVTable,
    ) -> HRESULT;
}
Expand description

Receives the CoreWebView2Controller created using CreateCoreWebView2Controller.

Required Methods§

Source

unsafe fn invoke( &self, error_code: HRESULT, created_controller: *mut *mut ICoreWebView2ControllerVTable, ) -> HRESULT

Provides the completion status and result of the corresponding asynchronous method.

Trait Implementations§

Source§

impl ComInterface for dyn ICoreWebView2CreateCoreWebView2ControllerCompletedHandler

Source§

const IID: IID = IID_ICORE_WEB_VIEW2_CREATE_CORE_WEB_VIEW2_CONTROLLER_COMPLETED_HANDLER

The associated id for this interface
Source§

type VTable = ICoreWebView2CreateCoreWebView2ControllerCompletedHandlerVTable

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

Source§

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

Get the vtable for a particular COM interface

Implementations on Foreign Types§

Source§

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

Source§

unsafe fn invoke( &self, error_code: HRESULT, created_controller: *mut *mut ICoreWebView2ControllerVTable, ) -> HRESULT

Source§

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

Source§

unsafe fn invoke( &self, error_code: HRESULT, created_controller: *mut *mut ICoreWebView2ControllerVTable, ) -> HRESULT

Implementors§