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