pub trait ICoreWebView2ContextMenuRequestedEventArgs_Impl: IUnknownImpl {
// Required methods
fn MenuItems(&self) -> Result<ICoreWebView2ContextMenuItemCollection>;
fn ContextMenuTarget(&self) -> Result<ICoreWebView2ContextMenuTarget>;
fn Location(&self) -> Result<POINT>;
fn SetSelectedCommandId(&self, value: i32) -> Result<()>;
fn SelectedCommandId(&self) -> Result<i32>;
fn SetHandled(&self, value: BOOL) -> Result<()>;
fn Handled(&self) -> Result<BOOL>;
fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>;
}Required Methods§
fn MenuItems(&self) -> Result<ICoreWebView2ContextMenuItemCollection>
fn ContextMenuTarget(&self) -> Result<ICoreWebView2ContextMenuTarget>
fn Location(&self) -> Result<POINT>
fn SetSelectedCommandId(&self, value: i32) -> Result<()>
fn SelectedCommandId(&self) -> Result<i32>
fn SetHandled(&self, value: BOOL) -> Result<()>
fn Handled(&self) -> Result<BOOL>
fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".