pub trait ICoreWebView2Environment8_Impl: ICoreWebView2Environment7_Impl {
// Required methods
fn add_ProcessInfosChanged(
&self,
eventhandler: Ref<'_, ICoreWebView2ProcessInfosChangedEventHandler>,
token: *mut i64,
) -> Result<()>;
fn remove_ProcessInfosChanged(&self, token: i64) -> Result<()>;
fn GetProcessInfos(&self) -> Result<ICoreWebView2ProcessInfoCollection>;
}
Required Methods§
fn add_ProcessInfosChanged( &self, eventhandler: Ref<'_, ICoreWebView2ProcessInfosChangedEventHandler>, token: *mut i64, ) -> Result<()>
fn remove_ProcessInfosChanged(&self, token: i64) -> Result<()>
fn GetProcessInfos(&self) -> Result<ICoreWebView2ProcessInfoCollection>
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.