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