pub enum WebViewObservedEvent<'a> {
Navigation(&'a NavigationEvent),
State(&'a WebViewStateChange),
}Expand description
A borrowed view of one delivered event, for read-only observers
(automation waits, devtools) that watch a WebView without owning it.
(WebViewEvent is taken by the creation-stage event in webview.rs.)
Variants§
State(&'a WebViewStateChange)
Auto Trait Implementations§
impl<'a> Freeze for WebViewObservedEvent<'a>
impl<'a> RefUnwindSafe for WebViewObservedEvent<'a>
impl<'a> Send for WebViewObservedEvent<'a>
impl<'a> Sync for WebViewObservedEvent<'a>
impl<'a> Unpin for WebViewObservedEvent<'a>
impl<'a> UnsafeUnpin for WebViewObservedEvent<'a>
impl<'a> UnwindSafe for WebViewObservedEvent<'a>
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