Trait ICoreWebView2ContextMenuTarget_Impl

Source
pub trait ICoreWebView2ContextMenuTarget_Impl: IUnknownImpl {
Show 13 methods // Required methods fn Kind( &self, value: *mut COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND, ) -> Result<()>; fn IsEditable(&self, value: *mut BOOL) -> Result<()>; fn IsRequestedForMainFrame(&self, value: *mut BOOL) -> Result<()>; fn PageUri(&self, value: *mut PWSTR) -> Result<()>; fn FrameUri(&self, value: *mut PWSTR) -> Result<()>; fn HasLinkUri(&self, value: *mut BOOL) -> Result<()>; fn LinkUri(&self, value: *mut PWSTR) -> Result<()>; fn HasLinkText(&self, value: *mut BOOL) -> Result<()>; fn LinkText(&self, value: *mut PWSTR) -> Result<()>; fn HasSourceUri(&self, value: *mut BOOL) -> Result<()>; fn SourceUri(&self, value: *mut PWSTR) -> Result<()>; fn HasSelection(&self, value: *mut BOOL) -> Result<()>; fn SelectionText(&self, value: *mut PWSTR) -> Result<()>;
}

Required Methods§

Source

fn Kind(&self, value: *mut COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND) -> Result<()>

Source

fn IsEditable(&self, value: *mut BOOL) -> Result<()>

Source

fn IsRequestedForMainFrame(&self, value: *mut BOOL) -> Result<()>

Source

fn PageUri(&self, value: *mut PWSTR) -> Result<()>

Source

fn FrameUri(&self, value: *mut PWSTR) -> Result<()>

Source

fn HasLinkUri(&self, value: *mut BOOL) -> Result<()>

Source

fn LinkUri(&self, value: *mut PWSTR) -> Result<()>

Source

fn HasLinkText(&self, value: *mut BOOL) -> Result<()>

Source

fn LinkText(&self, value: *mut PWSTR) -> Result<()>

Source

fn HasSourceUri(&self, value: *mut BOOL) -> Result<()>

Source

fn SourceUri(&self, value: *mut PWSTR) -> Result<()>

Source

fn HasSelection(&self, value: *mut BOOL) -> Result<()>

Source

fn SelectionText(&self, value: *mut PWSTR) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§