Struct chromiumoxide::cdp::browser_protocol::page::NavigationEntry[][src]

pub struct NavigationEntry {
    pub id: i64,
    pub url: String,
    pub user_typed_url: String,
    pub title: String,
    pub transition_type: TransitionType,
}

Navigation history entry. NavigationEntry

Fields

id: i64

Unique id of the navigation history entry.

url: String

URL of the navigation history entry.

user_typed_url: String

URL that the user typed in the url bar.

title: String

Title of the navigation history entry.

transition_type: TransitionType

Transition type.

Implementations

impl NavigationEntry[src]

impl NavigationEntry[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for NavigationEntry[src]

impl Debug for NavigationEntry[src]

impl<'de> Deserialize<'de> for NavigationEntry[src]

impl PartialEq<NavigationEntry> for NavigationEntry[src]

impl Serialize for NavigationEntry[src]

impl StructuralPartialEq for NavigationEntry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,