pub trait ICoreWebView2ProcessFailedEventArgs2_Impl: ICoreWebView2ProcessFailedEventArgs_Impl {
// Required methods
fn Reason(
&self,
reason: *mut COREWEBVIEW2_PROCESS_FAILED_REASON,
) -> Result<()>;
fn ExitCode(&self, exitcode: *mut i32) -> Result<()>;
fn ProcessDescription(&self, processdescription: *mut PWSTR) -> Result<()>;
fn FrameInfosForFailedProcess(
&self,
) -> Result<ICoreWebView2FrameInfoCollection>;
}
Required Methods§
fn Reason(&self, reason: *mut COREWEBVIEW2_PROCESS_FAILED_REASON) -> Result<()>
fn ExitCode(&self, exitcode: *mut i32) -> Result<()>
fn ProcessDescription(&self, processdescription: *mut PWSTR) -> Result<()>
fn FrameInfosForFailedProcess(&self) -> Result<ICoreWebView2FrameInfoCollection>
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.