pub trait ICoreWebView2WebMessageReceivedEventArgs_Impl: Sized {
    // Required methods
    fn Source(&self, source: *mut PWSTR) -> Result<()>;
    fn WebMessageAsJson(&self, webmessageasjson: *mut PWSTR) -> Result<()>;
    fn TryGetWebMessageAsString(
        &self,
        webmessageasstring: *mut PWSTR
    ) -> Result<()>;
}

Required Methods§

source

fn Source(&self, source: *mut PWSTR) -> Result<()>

source

fn WebMessageAsJson(&self, webmessageasjson: *mut PWSTR) -> Result<()>

source

fn TryGetWebMessageAsString(&self, webmessageasstring: *mut PWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§