pub struct CoreWebView2ProcessFailedEventArgs(/* private fields */);
Implementations§
Source§impl CoreWebView2ProcessFailedEventArgs
impl CoreWebView2ProcessFailedEventArgs
pub fn ProcessFailedKind(&self) -> Result<CoreWebView2ProcessFailedKind>
pub fn Reason(&self) -> Result<CoreWebView2ProcessFailedReason>
pub fn ExitCode(&self) -> Result<i32>
pub fn ProcessDescription(&self) -> Result<HString>
pub fn FrameInfosForFailedProcess( &self, ) -> Result<IVectorView<CoreWebView2FrameInfo>>
Trait Implementations§
Source§impl Clone for CoreWebView2ProcessFailedEventArgs
impl Clone for CoreWebView2ProcessFailedEventArgs
Source§fn clone(&self) -> CoreWebView2ProcessFailedEventArgs
fn clone(&self) -> CoreWebView2ProcessFailedEventArgs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl From<&CoreWebView2ProcessFailedEventArgs> for Object
impl From<&CoreWebView2ProcessFailedEventArgs> for Object
Source§fn from(value: &CoreWebView2ProcessFailedEventArgs) -> Self
fn from(value: &CoreWebView2ProcessFailedEventArgs) -> Self
Converts to this type from the input type.
Source§impl From<CoreWebView2ProcessFailedEventArgs> for Object
impl From<CoreWebView2ProcessFailedEventArgs> for Object
Source§fn from(value: CoreWebView2ProcessFailedEventArgs) -> Self
fn from(value: CoreWebView2ProcessFailedEventArgs) -> Self
Converts to this type from the input type.
Source§impl Interface for CoreWebView2ProcessFailedEventArgs
impl Interface for CoreWebView2ProcessFailedEventArgs
const IID: Guid
type Vtable = ICoreWebView2ProcessFailedEventArgs_abi
Source§impl<'a> IntoParam<'a, Object> for &'a CoreWebView2ProcessFailedEventArgs
impl<'a> IntoParam<'a, Object> for &'a CoreWebView2ProcessFailedEventArgs
fn into_param(self) -> Param<'a, Object>
Source§impl<'a> IntoParam<'a, Object> for CoreWebView2ProcessFailedEventArgs
impl<'a> IntoParam<'a, Object> for CoreWebView2ProcessFailedEventArgs
fn into_param(self) -> Param<'a, Object>
Source§impl PartialEq for CoreWebView2ProcessFailedEventArgs
impl PartialEq for CoreWebView2ProcessFailedEventArgs
Source§fn eq(&self, other: &CoreWebView2ProcessFailedEventArgs) -> bool
fn eq(&self, other: &CoreWebView2ProcessFailedEventArgs) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for CoreWebView2ProcessFailedEventArgs
impl Send for CoreWebView2ProcessFailedEventArgs
impl StructuralPartialEq for CoreWebView2ProcessFailedEventArgs
impl Sync for CoreWebView2ProcessFailedEventArgs
Auto Trait Implementations§
impl Freeze for CoreWebView2ProcessFailedEventArgs
impl RefUnwindSafe for CoreWebView2ProcessFailedEventArgs
impl Unpin for CoreWebView2ProcessFailedEventArgs
impl UnwindSafe for CoreWebView2ProcessFailedEventArgs
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
Source§fn set_abi(&mut self) -> *mut <T as Abi>::Abi
fn set_abi(&mut self) -> *mut <T as Abi>::Abi
Returns a pointer for setting the object’s value via an ABI call.
Source§unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
Casts the ABI representation to a Rust object by taking ownership of the bits.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more