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§
Trait Implementations§
Source§impl ComInterface for dyn ICoreWebView2Deferral
impl ComInterface for dyn ICoreWebView2Deferral
Source§type VTable = ICoreWebView2DeferralVTable
type VTable = ICoreWebView2DeferralVTable
A COM compatible V-Table
Source§fn is_iid_in_inheritance_chain(riid: &GUID) -> bool
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
impl<C: ICoreWebView2Deferral> ProductionComInterface<C> for dyn ICoreWebView2Deferral
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".