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
current_index: i32
Index of the current navigation history entry.
entries: Vec<NavigationEntry<'a>>
Array of navigation history entries.
Trait Implementations
impl<'a> Clone for GetNavigationHistoryResponse<'a>[src]
fn clone(&self) -> GetNavigationHistoryResponse<'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 GetNavigationHistoryResponse<'a>[src]
impl<'a> PartialEq for GetNavigationHistoryResponse<'a>[src]
fn eq(&self, __arg_0: &GetNavigationHistoryResponse<'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: &GetNavigationHistoryResponse<'a>) -> bool[src]
This method tests for !=.
impl<'a> CdpCommand for GetNavigationHistoryResponse<'a>[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Page.getNavigationHistory"