Struct cdp::page::GetNavigationHistoryResponse [] [src]

pub struct GetNavigationHistoryResponse<'a> {
    pub current_index: i32,
    pub entries: Vec<NavigationEntry<'a>>,
}

[Experimental] Returns navigation history for the current page.

Command Page.getNavigationHistory

Domain Module: cdp::page
Command Struct: cdp::page::GetNavigationHistoryCommand
Response Struct: cdp::page::GetNavigationHistoryResponse

Fields

Index of the current navigation history entry.

Array of navigation history entries.

Trait Implementations

impl<'a> Clone for GetNavigationHistoryResponse<'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 GetNavigationHistoryResponse<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for GetNavigationHistoryResponse<'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 !=.

impl<'a> CdpCommand for GetNavigationHistoryResponse<'a>
[src]

COMMAND_NAME: &'static str = "Page.getNavigationHistory"

impl<'a, 'b> HasCdpCommand<'a> for GetNavigationHistoryResponse<'b>
[src]