pub trait ICoreWebView2ExecuteScriptResult_Impl: IUnknownImpl {
// Required methods
fn Succeeded(&self, value: *mut BOOL) -> Result<()>;
fn ResultAsJson(&self, jsonresult: *mut PWSTR) -> Result<()>;
fn TryGetResultAsString(
&self,
stringresult: *mut PWSTR,
value: *mut BOOL,
) -> Result<()>;
fn Exception(&self) -> Result<ICoreWebView2ScriptException>;
}
Required Methods§
fn Succeeded(&self, value: *mut BOOL) -> Result<()>
fn ResultAsJson(&self, jsonresult: *mut PWSTR) -> Result<()>
fn TryGetResultAsString( &self, stringresult: *mut PWSTR, value: *mut BOOL, ) -> Result<()>
fn Exception(&self) -> Result<ICoreWebView2ScriptException>
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.