pub trait ICoreWebView2_12_Impl: ICoreWebView2_11_Impl {
// Required methods
fn StatusBarTextChanged(
&self,
eventhandler: Ref<'_, ICoreWebView2StatusBarTextChangedEventHandler>,
) -> Result<i64>;
fn RemoveStatusBarTextChanged(&self, token: i64) -> Result<()>;
fn StatusBarText(&self) -> Result<PWSTR>;
}Required Methods§
fn StatusBarTextChanged( &self, eventhandler: Ref<'_, ICoreWebView2StatusBarTextChangedEventHandler>, ) -> Result<i64>
fn RemoveStatusBarTextChanged(&self, token: i64) -> Result<()>
fn StatusBarText(&self) -> Result<PWSTR>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".