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