pub trait ICoreWebView2Find_Impl: IUnknownImpl {
// Required methods
fn ActiveMatchIndex(&self) -> Result<i32>;
fn MatchCount(&self) -> Result<i32>;
fn ActiveMatchIndexChanged(
&self,
eventhandler: Ref<'_, ICoreWebView2FindActiveMatchIndexChangedEventHandler>,
) -> Result<i64>;
fn RemoveActiveMatchIndexChanged(&self, token: i64) -> Result<()>;
fn MatchCountChanged(
&self,
eventhandler: Ref<'_, ICoreWebView2FindMatchCountChangedEventHandler>,
) -> Result<i64>;
fn RemoveMatchCountChanged(&self, token: i64) -> Result<()>;
fn Start(
&self,
options: Ref<'_, ICoreWebView2FindOptions>,
handler: Ref<'_, ICoreWebView2FindStartCompletedHandler>,
) -> Result<()>;
fn FindNext(&self) -> Result<()>;
fn FindPrevious(&self) -> Result<()>;
fn Stop(&self) -> Result<()>;
}Required Methods§
fn ActiveMatchIndex(&self) -> Result<i32>
fn MatchCount(&self) -> Result<i32>
fn ActiveMatchIndexChanged( &self, eventhandler: Ref<'_, ICoreWebView2FindActiveMatchIndexChangedEventHandler>, ) -> Result<i64>
fn RemoveActiveMatchIndexChanged(&self, token: i64) -> Result<()>
fn MatchCountChanged( &self, eventhandler: Ref<'_, ICoreWebView2FindMatchCountChangedEventHandler>, ) -> Result<i64>
fn RemoveMatchCountChanged(&self, token: i64) -> Result<()>
fn Start( &self, options: Ref<'_, ICoreWebView2FindOptions>, handler: Ref<'_, ICoreWebView2FindStartCompletedHandler>, ) -> Result<()>
fn FindNext(&self) -> Result<()>
fn FindPrevious(&self) -> Result<()>
fn Stop(&self) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".