Trait ICoreWebView2ExecuteScriptResult_Impl

Source
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§

Source

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

Source

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

Source

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

Source

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.

Implementors§