pub trait ICoreWebView2ExecuteScriptResult_Impl: Sized {
    // Required methods
    fn Succeeded(&self, value: *mut BOOL) -> Result<(), Error>;
    fn ResultAsJson(&self, jsonresult: *mut PWSTR) -> Result<(), Error>;
    fn TryGetResultAsString(
        &self,
        stringresult: *mut PWSTR,
        value: *mut BOOL
    ) -> Result<(), Error>;
    fn Exception(&self) -> Result<ICoreWebView2ScriptException, Error>;
}

Required Methods§

source

fn Succeeded(&self, value: *mut BOOL) -> Result<(), Error>

source

fn ResultAsJson(&self, jsonresult: *mut PWSTR) -> Result<(), Error>

source

fn TryGetResultAsString( &self, stringresult: *mut PWSTR, value: *mut BOOL ) -> Result<(), Error>

source

fn Exception(&self) -> Result<ICoreWebView2ScriptException, Error>

Object Safety§

This trait is not object safe.

Implementors§