pub struct ChromeNavigationHistoryEntry {
pub entry_id: ChromeNavigationEntryId,
pub url: String,
pub title: Option<String>,
pub index: usize,
pub same_document_with_previous: bool,
}Expand description
Chrome-transport history entry metadata.
Fields§
§entry_id: ChromeNavigationEntryId§url: String§title: Option<String>§index: usize§same_document_with_previous: boolTrait Implementations§
Source§fn clone(&self) -> ChromeNavigationHistoryEntry
fn clone(&self) -> ChromeNavigationHistoryEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§fn from(value: ChromeNavigationHistoryEntry) -> Self
fn from(value: ChromeNavigationHistoryEntry) -> Self
Converts to this type from the input type.
Source§fn from(value: NavigationHistoryEntry) -> Self
fn from(value: NavigationHistoryEntry) -> Self
Converts to this type from the input type.
Source§fn eq(&self, other: &ChromeNavigationHistoryEntry) -> bool
fn eq(&self, other: &ChromeNavigationHistoryEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Auto Trait Implementations§
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.