ICoreWebView2Deferral

Trait ICoreWebView2Deferral 

Source
pub trait ICoreWebView2Deferral: IUnknown {
    // Required method
    unsafe fn complete(&self) -> HRESULT;
}
Expand description

This interface is used to complete deferrals on event args that support getting deferrals using the GetDeferral method.

Required Methods§

Source

unsafe fn complete(&self) -> HRESULT

Completes the associated deferred event. Complete should only be run once for each deferral taken.

Trait Implementations§

Source§

impl ComInterface for dyn ICoreWebView2Deferral

Source§

const IID: IID = IID_ICORE_WEB_VIEW2_DEFERRAL

The associated id for this interface
Source§

type VTable = ICoreWebView2DeferralVTable

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

Source§

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

Get the vtable for a particular COM interface

Implementations on Foreign Types§

Source§

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

Source§

unsafe fn complete(&self) -> HRESULT

Source§

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

Source§

unsafe fn complete(&self) -> HRESULT

Implementors§