pub trait ICoreWebView2Environment8_Impl: Sized + ICoreWebView2Environment7_Impl {
    // Required methods
    fn add_ProcessInfosChanged(
        &self,
        eventhandler: Option<&ICoreWebView2ProcessInfosChangedEventHandler>,
        token: *mut EventRegistrationToken
    ) -> Result<()>;
    fn remove_ProcessInfosChanged(
        &self,
        token: &EventRegistrationToken
    ) -> Result<()>;
    fn GetProcessInfos(&self) -> Result<ICoreWebView2ProcessInfoCollection>;
}

Required Methods§

source

fn add_ProcessInfosChanged( &self, eventhandler: Option<&ICoreWebView2ProcessInfosChangedEventHandler>, token: *mut EventRegistrationToken ) -> Result<()>

source

fn remove_ProcessInfosChanged( &self, token: &EventRegistrationToken ) -> Result<()>

source

fn GetProcessInfos(&self) -> Result<ICoreWebView2ProcessInfoCollection>

Object Safety§

This trait is not object safe.

Implementors§