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

pub struct GetNavigationHistoryReturns {
    pub current_index: i64,
    pub entries: Vec<NavigationEntry, Global>,
}

Returns navigation history for the current page. getNavigationHistory

Fields

current_index: i64

Index of the current navigation history entry.

entries: Vec<NavigationEntry, Global>

Array of navigation history entries.

Implementations

impl GetNavigationHistoryReturns[src]

pub fn new(
    current_index: impl Into<i64>,
    entries: Vec<NavigationEntry, Global>
) -> GetNavigationHistoryReturns
[src]

impl GetNavigationHistoryReturns[src]

Trait Implementations

impl Clone for GetNavigationHistoryReturns[src]

impl Debug for GetNavigationHistoryReturns[src]

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

impl PartialEq<GetNavigationHistoryReturns> for GetNavigationHistoryReturns[src]

impl Serialize for GetNavigationHistoryReturns[src]

impl StructuralPartialEq for GetNavigationHistoryReturns[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>,