pub enum WebViewEvent {
Stage(WebViewCreateStage),
Failed {
stage: WebViewCreateStage,
error: WebViewError,
},
}Variants§
Trait Implementations§
Source§impl Clone for WebViewEvent
impl Clone for WebViewEvent
Source§fn clone(&self) -> WebViewEvent
fn clone(&self) -> WebViewEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WebViewEvent
impl Debug for WebViewEvent
impl Eq for WebViewEvent
Source§impl PartialEq for WebViewEvent
impl PartialEq for WebViewEvent
Source§fn eq(&self, other: &WebViewEvent) -> bool
fn eq(&self, other: &WebViewEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WebViewEvent
Auto Trait Implementations§
impl Freeze for WebViewEvent
impl RefUnwindSafe for WebViewEvent
impl Send for WebViewEvent
impl Sync for WebViewEvent
impl Unpin for WebViewEvent
impl UnsafeUnpin for WebViewEvent
impl UnwindSafe for WebViewEvent
Blanket Implementations§
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