Skip to main content

ICoreWebView2FindOptions_Impl

Trait ICoreWebView2FindOptions_Impl 

Source
pub trait ICoreWebView2FindOptions_Impl: IUnknownImpl {
    // Required methods
    fn FindTerm(&self, value: *mut PWSTR) -> Result<()>;
    fn SetFindTerm(&self, value: &PCWSTR) -> Result<()>;
    fn IsCaseSensitive(&self, value: *mut BOOL) -> Result<()>;
    fn SetIsCaseSensitive(&self, value: BOOL) -> Result<()>;
    fn ShouldHighlightAllMatches(&self, value: *mut BOOL) -> Result<()>;
    fn SetShouldHighlightAllMatches(&self, value: BOOL) -> Result<()>;
    fn ShouldMatchWord(&self, value: *mut BOOL) -> Result<()>;
    fn SetShouldMatchWord(&self, value: BOOL) -> Result<()>;
    fn SuppressDefaultFindDialog(&self, value: *mut BOOL) -> Result<()>;
    fn SetSuppressDefaultFindDialog(&self, value: BOOL) -> Result<()>;
}

Required Methods§

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§