Skip to main content

ICoreWebView2FindOptions_Impl

Trait ICoreWebView2FindOptions_Impl 

Source
pub trait ICoreWebView2FindOptions_Impl: IUnknownImpl {
    // Required methods
    fn FindTerm(&self) -> Result<PWSTR>;
    fn SetFindTerm(&self, value: &PCWSTR) -> Result<()>;
    fn IsCaseSensitive(&self) -> Result<BOOL>;
    fn SetIsCaseSensitive(&self, value: BOOL) -> Result<()>;
    fn ShouldHighlightAllMatches(&self) -> Result<BOOL>;
    fn SetShouldHighlightAllMatches(&self, value: BOOL) -> Result<()>;
    fn ShouldMatchWord(&self) -> Result<BOOL>;
    fn SetShouldMatchWord(&self, value: BOOL) -> Result<()>;
    fn SuppressDefaultFindDialog(&self) -> Result<BOOL>;
    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".

Implementors§