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

Unique id of the navigation history entry.

URL of the navigation history entry.

URL that the user typed in the url bar.

Title of the navigation history entry.

Transition type.

Trait Implementations

impl<'a> Clone for NavigationEntry<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for NavigationEntry<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for NavigationEntry<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.