Struct cdp::page::NavigationEntry
[−]
[src]
pub struct NavigationEntry<'a> { pub id: i32, pub url: Cow<'a, str>, pub user_typed_url: Cow<'a, str>, pub title: Cow<'a, str>, pub transition_type: TransitionType, }
[Experimental] Navigation history entry.
Fields
id: i32
Unique id of the navigation history entry.
url: Cow<'a, str>
URL of the navigation history entry.
user_typed_url: Cow<'a, str>
URL that the user typed in the url bar.
title: Cow<'a, str>
Title of the navigation history entry.
transition_type: TransitionType
Transition type.
Trait Implementations
impl<'a> Clone for NavigationEntry<'a>
[src]
fn clone(&self) -> NavigationEntry<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Debug for NavigationEntry<'a>
[src]
impl<'a> PartialEq for NavigationEntry<'a>
[src]
fn eq(&self, __arg_0: &NavigationEntry<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &NavigationEntry<'a>) -> bool
[src]
This method tests for !=
.