pub struct NavigatedWithinDocument {
pub frame_id: FrameId,
pub url: String,
pub navigation_type: String,
}Expand description
Fired when same-document navigation happens, e.g. due to history API usage or anchor navigation. EXPERIMENTAL: This feature is experimental and may change or be removed.
Fields§
§frame_id: FrameIdId of the frame.
url: StringFrame’s new url.
Navigation type
Implementations§
Trait Implementations§
Source§fn clone(&self) -> NavigatedWithinDocument
fn clone(&self) -> NavigatedWithinDocument
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
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