pub struct FrameStartedNavigating {
pub method: FrameStartedNavigatingMethod,
pub params: FrameStartedNavigatingParams,
}Expand description
Fired when a navigation starts. This event is fired for both
renderer-initiated and browser-initiated navigations. For renderer-initiated
navigations, the event is fired after frameRequestedNavigation.
Navigation may still be cancelled after the event is issued. Multiple events
can be fired for a single navigation, for example, when a same-document
navigation becomes a cross-document navigation (such as in the case of a
frameset).
frameStartedNavigating
Fields§
§method: FrameStartedNavigatingMethod§params: FrameStartedNavigatingParamsImplementations§
pub const IDENTIFIER: &'static str = "Page.frameStartedNavigating"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§fn clone(&self) -> FrameStartedNavigating
fn clone(&self) -> FrameStartedNavigating
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§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§fn from(v: FrameStartedNavigating) -> Self
fn from(v: FrameStartedNavigating) -> Self
Converts to this type from the input type.
Source§fn from(v: FrameStartedNavigating) -> Self
fn from(v: FrameStartedNavigating) -> Self
Converts to this type from the input type.
Source§fn from(v: FrameStartedNavigating) -> Self
fn from(v: FrameStartedNavigating) -> Self
Converts to this type from the input type.
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <FrameStartedNavigating as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <FrameStartedNavigating as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§type Error = PageEvents
type Error = PageEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: PageEvents,
) -> Result<Self, <FrameStartedNavigating as TryFrom<PageEvents>>::Error>
fn try_from( e: PageEvents, ) -> Result<Self, <FrameStartedNavigating as TryFrom<PageEvents>>::Error>
Performs the conversion.
Auto Trait Implementations§
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