pub trait ICoreWebView2ExecuteScriptWithResultCompletedHandler_Impl: Sized {
    // Required method
    fn Invoke(
        &self,
        errorcode: HRESULT,
        result: Option<&ICoreWebView2ExecuteScriptResult>,
    ) -> Result<(), Error>;
}

Required Methods§

source

fn Invoke( &self, errorcode: HRESULT, result: Option<&ICoreWebView2ExecuteScriptResult>, ) -> Result<(), Error>

Object Safety§

This trait is not object safe.

Implementors§