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