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§
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>
Object Safety§
This trait is not object safe.